Skip to content

Commit 6e63cc8

Browse files
committed
Merge pull request #304 from legitalk/patch-3
Missing 3x ";"
2 parents 51fc6d9 + 28bb63e commit 6e63cc8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

js/jquery.knob.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297
}
298298

299299
return this;
300-
}
300+
};
301301

302302
this._draw = function () {
303303

@@ -472,7 +472,7 @@
472472
// Utils
473473
this.h2rgba = function (h, a) {
474474
var rgb;
475-
h = h.substring(1,7)
475+
h = h.substring(1,7);
476476
rgb = [
477477
parseInt(h.substring(0,2), 16),
478478
parseInt(h.substring(2,4), 16),
@@ -669,7 +669,7 @@
669669
);
670670

671671
this.$c.bind("mousewheel DOMMouseScroll", mw);
672-
this.$.bind("mousewheel DOMMouseScroll", mw)
672+
this.$.bind("mousewheel DOMMouseScroll", mw);
673673
};
674674

675675
this.init = function () {

0 commit comments

Comments
 (0)