Opened 14 years ago
Closed 14 years ago
#2500 closed bug (fixed)
ui.slider - moveTo assumes string-value is always relative
Reported by: | joern | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | ui | Version: | |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In the current moveTo implementation, if the value is a string, its always handled as a relative value. Instead it should be checked if the value really starts with +=, and applying the relative stuff only then.
This works quite well:
if(value.constructor == String) { if (/^\-\=/.test(value) ) { value = this.value() - parseInt(value.replace('-=', ''), 10) } else if (/^\+\=/.test(value) ) { value = this.value() + parseInt(value.replace('+=', ''), 10) } else { value = parseInt(value, 10); } }
Attachments (1)
Change History (2)
Changed 14 years ago by
Attachment: | ui-slider-moveTo.patch added |
---|
comment:1 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Fixed in [4897].