Side navigation
#2863 closed bug (invalid)
Opened May 14, 2008 01:11PM UTC
Closed July 11, 2010 06:49PM UTC
ui-slider: Opera slider problem
Reported by: | making718 | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.2.4 |
Component: | ui | Version: | 1.2.3 |
Keywords: | slider, opera | Cc: | |
Blocked by: | Blocking: |
Description
In Opera after you slide a handle on the slider, that handle cannot be moved again until another handle on the page is moved.
Attachments (0)
Change History (3)
Changed December 05, 2008 08:25PM UTC by comment:1
Changed December 05, 2008 08:32PM UTC by comment:2
Also forgot to mention that I was using jQuery 1.2.6 and jQuery UI 1.5.3.
Changed July 11, 2010 06:49PM UTC by comment:3
resolution: | → invalid |
---|---|
status: | new → closed |
This should be filed in the UI bug tracker if still relevant.
Replying to [ticket:2863 making718]:
The issue seems to be in jquery.ui.all.js within the Slider function. It appears to be a bind function found on line 6668. The "type" is entered as "mousedown" which works in FF 2+, IE 6+ and Safari 3.1.2 (all Windows XP SP3). However testing on Opera 9.02 produces an interesting result. Clicking on the "handle" will initially produce the desired result. However, releasing the handle and then clicking it once again causes the handle to remain static. Clicking anywhere else on the screen (other than the handle and slider) will allow you to once again click on the handle and operate it accordingly.
The current, albeit premature solution that I've come to appears to be changing the "bind type" to "click" within the Slider function on line 6668 once again. This produces the desired effect in all aforementioned browsers.