diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-30 13:11:27 +0200 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-30 13:11:27 +0200 |
commit | 42b419d27adbe6f1fc504a7fe42b847d9b9c0335 (patch) | |
tree | 352b048226bac1ef19e6d9983ada2fbfc0821caa /ui/jquery.ui.slider.js | |
parent | 415ee934fa98eeb6773504af8207374dc64f4d5e (diff) | |
parent | 9fa157840f0bfacfd4190bd6a159cba8ac2107b8 (diff) | |
download | jquery-ui-42b419d27adbe6f1fc504a7fe42b847d9b9c0335.tar.gz jquery-ui-42b419d27adbe6f1fc504a7fe42b847d9b9c0335.zip |
Merge branch 'master' into checksums
Diffstat (limited to 'ui/jquery.ui.slider.js')
-rw-r--r-- | ui/jquery.ui.slider.js | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/ui/jquery.ui.slider.js b/ui/jquery.ui.slider.js index c392facd7..185fe809c 100644 --- a/ui/jquery.ui.slider.js +++ b/ui/jquery.ui.slider.js @@ -152,7 +152,7 @@ $.widget("ui.slider", $.ui.mouse, { break; } - var curVal, newVal, step = self._step(); + var curVal, newVal, step = self.options.step; if (self.options.values && self.options.values.length) { curVal = newVal = self.values(index); } else { @@ -526,11 +526,6 @@ $.widget("ui.slider", $.ui.mouse, { }, - _step: function() { - var step = this.options.step; - return step; - }, - _value: function() { //internal value getter // _value() returns value trimmed by min and max @@ -564,20 +559,21 @@ $.widget("ui.slider", $.ui.mouse, { }, _trimValue: function(val) { - if (val < this._valueMin()) val = this._valueMin(); - if (val > this._valueMax()) val = this._valueMax(); - + if (val < this._valueMin()) { + return this._valueMin(); + } + if (val > this._valueMax()) { + return this._valueMax(); + } return val; }, _valueMin: function() { - var valueMin = this.options.min; - return valueMin; + return this.options.min; }, _valueMax: function() { - var valueMax = this.options.max; - return valueMax; + return this.options.max; }, _refreshValue: function() { |