diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-10-18 17:21:23 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-10-18 17:21:23 +0200 |
commit | 5ee3a2a7fdb7d49a5897b5f537d4e69d65bef6cb (patch) | |
tree | cdb3b636f816fa51c16b392b28ed11c9caa5ed91 | |
parent | b715e1d3cc54245c54d3981aa341f3a812dba499 (diff) | |
download | jquery-ui-5ee3a2a7fdb7d49a5897b5f537d4e69d65bef6cb.tar.gz jquery-ui-5ee3a2a7fdb7d49a5897b5f537d4e69d65bef6cb.zip |
Revert "Slider: Remove unnecessary 3rd argument in _slide method when calling this.values()"
This reverts commit b715e1d3cc54245c54d3981aa341f3a812dba499.
Reverting to fix author email address to avoid CLA issues in the future.
-rw-r--r-- | ui/jquery.ui.slider.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.slider.js b/ui/jquery.ui.slider.js index df71f363f..e4f1cf7c9 100644 --- a/ui/jquery.ui.slider.js +++ b/ui/jquery.ui.slider.js @@ -322,7 +322,7 @@ $.widget( "ui.slider", $.ui.mouse, { } ); otherVal = this.values( index ? 0 : 1 ); if ( allowed !== false ) { - this.values( index, newVal ); + this.values( index, newVal, true ); } } } else { |