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

This commit is contained in:
Jyoti Deka
2013-10-18 17:23:36 +02:00
committed by Jörn Zaefferer
parent 5ee3a2a7fd
commit 93a2dcde52

View File

@@ -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 {