]> source.dussan.org Git - jquery-ui.git/commitdiff
Slider:
authorScott González <scott.gonzalez@gmail.com>
Mon, 2 Feb 2009 03:07:54 +0000 (03:07 +0000)
committerScott González <scott.gonzalez@gmail.com>
Mon, 2 Feb 2009 03:07:54 +0000 (03:07 +0000)
  - 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.

ui/ui.slider.js

index 583f51504147dd22829ccbe8651d03091f622039..f30365368ed6e3a045d2ad1296b21b72e127b347 100644 (file)
@@ -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]);
                }