Skip to content

Commit 87ac73a

Browse files
committed
Merge pull request aterrien#144 from lemberg/master
Follow-up Android browser fix: fixed full knob display. @T2L aterrien#97 aterrien#56
2 parents 7896719 + 4537561 commit 87ac73a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/jquery.knob.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -717,14 +717,14 @@
717717

718718
c.beginPath();
719719
c.strokeStyle = this.pColor;
720-
c.arc(this.xy, this.xy, this.radius, sa, ea, false);
720+
c.arc(this.xy, this.xy, this.radius, sa - 0.00001, ea + 0.00001, false);
721721
c.stroke();
722722
r = (this.cv == this.v);
723723
}
724724

725725
c.beginPath();
726726
c.strokeStyle = r ? this.o.fgColor : this.fgColor ;
727-
c.arc(this.xy, this.xy, this.radius, sat, eat, false);
727+
c.arc(this.xy, this.xy, this.radius, sat - 0.00001, eat + 0.00001, false);
728728
c.stroke();
729729
};
730730

0 commit comments

Comments
 (0)