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

This commit is contained in:
Jyoti Deka 2013-10-10 13:27:29 -04:00 committed by Jörn Zaefferer
parent ecde7cd41a
commit b715e1d3cc

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 {