#2862 closed bug (fixed)
ui-slider: Right handle on a range slider gets messed up
Reported by: | making718 | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.5 |
Component: | ui.slider | Version: | 1.5b4 |
Keywords: | slider | Cc: | |
Blocked by: | Blocking: |
Description
On some browsers like Firefox and Safari, with a range slider with the right handle selected if you click to the left of the left handle the right handle will not move. After that the left handle will be free to move anywhere even past the right handle. I tracked down the error to the translateRange method. The axis parameter is missing on the second call to translateValue. So this line:
value = this.translateValue(this.value(0,axis) + this.oneStep(axis));
Should read
value = this.translateValue(this.value(0,axis) + this.oneStep(axis), axis);
Change History (4)
comment:1 Changed 15 years ago by
Milestone: | 1.2.4 |
---|
comment:2 Changed 15 years ago by
Component: | ui.core → ui.slider |
---|---|
Version: | 1.2.3 → 1.5b4 |
comment:3 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Thanks a lot! We were wondering why it sometimes screws up ;)
comment:4 Changed 14 years ago by
Milestone: | → 1.5 |
---|
Note: See
TracTickets for help on using
tickets.
Milestone 1.2.4 deleted