Skip to content

Commit

Permalink
Slider: Remove unnecessary 3rd argument in _slide method when calling…
Browse files Browse the repository at this point in the history
… this.values()
  • Loading branch information
dekajp authored and jzaefferer committed Oct 18, 2013
1 parent 5ee3a2a commit 93a2dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/jquery.ui.slider.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 93a2dcd

Please sign in to comment.