Skip to content

Commit

Permalink
Bug fix in updateSlider method
Browse files Browse the repository at this point in the history
  • Loading branch information
freqdec committed Apr 21, 2012
1 parent 577b6ae commit 8b48982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/fd-slider.js
Expand Up @@ -1290,7 +1290,7 @@ var fdSlider = (function() {
stepUp: function(id, n) { if(!sliderExists(id)) { return false; }; sliders[id].stepUp(Math.abs(n)||1); },
stepDown: function(id, n) { if(!sliderExists(id)) { return false; }; sliders[id].stepDown(-Math.abs(n)||-1); },
setRange: function(id, newMin, newMax) { if(!sliderExists(id)) { return false; }; sliders[id].setRange(newMin, newMax); },
updateSlider: function(id) { if(!sliderExists(id)) { return false; }; sliders[id].reset(); },
updateSlider: function(id) { if(!sliderExists(id)) { return false; }; sliders[id].onResize(); sliders[id].reset(); },
disable: function(id) { if(!sliderExists(id)) { return false; }; sliders[id].disable(); },
enable: function(id) { if(!sliderExists(id)) { return false; }; sliders[id].enable(); },
getValueSet: function() { return getValueSet(); },
Expand Down
2 changes: 1 addition & 1 deletion js/fd-slider.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8b48982

Please sign in to comment.