aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.slider.js
diff options
context:
space:
mode:
authorJyoti Deka <dekajp@yahoo.com>2013-10-10 13:27:29 -0400
committerJörn Zaefferer <joern.zaefferer@gmail.com>2013-10-18 17:18:18 +0200
commitb715e1d3cc54245c54d3981aa341f3a812dba499 (patch)
treee8b8dc2b1cadfd4fcac4a162024bd794a684c7f8 /ui/jquery.ui.slider.js
parentecde7cd41a59e9c3ff07f56baeeaec2147cca779 (diff)
downloadjquery-ui-b715e1d3cc54245c54d3981aa341f3a812dba499.tar.gz
jquery-ui-b715e1d3cc54245c54d3981aa341f3a812dba499.zip
Slider: Remove unnecessary 3rd argument in _slide method when calling this.values()
Diffstat (limited to 'ui/jquery.ui.slider.js')
-rw-r--r--ui/jquery.ui.slider.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.slider.js b/ui/jquery.ui.slider.js
index e4f1cf7c9..df71f363f 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, true );
+ this.values( index, newVal );
}
}
} else {