From: Scott González Date: Mon, 2 Feb 2009 03:07:54 +0000 (+0000) Subject: Slider: X-Git-Tag: 1.6~115 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3051eca215181f4de902e29f4ddd0d683cb9f33c;p=jquery-ui.git Slider: - Fixed #4016: Vertical slider was unusable when the thumb was at the min value. - Fixed #3736 for real: Vertical slider was unusable when using a range and both thumbs were at the min value. --- diff --git a/ui/ui.slider.js b/ui/ui.slider.js index 583f51504..f30365368 100644 --- a/ui/ui.slider.js +++ b/ui/ui.slider.js @@ -196,10 +196,11 @@ $.widget("ui.slider", $.extend({}, $.ui.mouse, { index = i; } }); - - // workaround for bug #3736 (if both handles of a range are at 0, the first is always used as the one with least distance, + + // workaround for bug #3736 (if both handles of a range are at 0, + // the first is always used as the one with least distance, // and moving it is obviously prevented by preventing negative ranges) - if(o.range && (this.values(0) + this.values(1)) == 0) { + if(o.range == true && this.values(1) == o.min) { closestHandle = $(this.handles[++index]); }