- 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.
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]);
}