From b715e1d3cc54245c54d3981aa341f3a812dba499 Mon Sep 17 00:00:00 2001 From: Jyoti Deka Date: Thu, 10 Oct 2013 13:27:29 -0400 Subject: [PATCH] Slider: Remove unnecessary 3rd argument in _slide method when calling this.values() --- ui/jquery.ui.slider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.39.5