Skip to content

Commit

Permalink
fix jshint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Jolif committed Mar 20, 2015
1 parent 32e0a71 commit 4a68794
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Slider.js
Expand Up @@ -202,6 +202,7 @@ define([
}
},

/* jshint maxcomplexity: 12 */
computeProperties: function (props) {
if ("value" in props || "min" in props || "max" in props || "step" in props) {
var value = this._getValueAsArray(),
Expand All @@ -228,6 +229,7 @@ define([
this._reversed = !((!this.vertical && (ltr !== this.flip)) || (this.vertical && this.flip));
}
},
/* jshint maxcomplexity: 10 */

refreshRendering: function (props) {
if ("value" in props) {
Expand Down

0 comments on commit 4a68794

Please sign in to comment.