Search and Top Navigation
#2862 closed bug (fixed)
Opened May 14, 2008 11:44AM UTC
Closed May 27, 2008 06:44PM UTC
Last modified February 26, 2009 12:10PM UTC
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);
Attachments (0)
Change History (4)
Changed May 24, 2008 03:39AM UTC by comment:1
milestone: | 1.2.4 |
---|
Changed May 24, 2008 04:06AM UTC by comment:2
component: | ui.core → ui.slider |
---|---|
version: | 1.2.3 → 1.5b4 |
Changed May 27, 2008 06:44PM UTC by comment:3
resolution: | → fixed |
---|---|
status: | new → closed |
Thanks a lot! We were wondering why it sometimes screws up ;)
Changed February 26, 2009 12:10PM UTC by comment:4
milestone: | → 1.5 |
---|
Milestone 1.2.4 deleted