Slider: Remove unnecessary 3rd argument in _slide method when calling this.values()

(cherry picked from commit 93a2dcde52)
This commit is contained in:
Jyoti Deka 2013-10-18 17:23:36 +02:00 committed by Scott González
parent 6cdebe84f8
commit 01a0da8105

View File

@ -322,7 +322,7 @@ $.widget( "ui.slider", $.ui.mouse, {
} ); } );
otherVal = this.values( index ? 0 : 1 ); otherVal = this.values( index ? 0 : 1 );
if ( allowed !== false ) { if ( allowed !== false ) {
this.values( index, newVal, true ); this.values( index, newVal );
} }
} }
} else { } else {