Opened 12 years ago
Closed 12 years ago
#5906 closed bug (worksforme)
Slider not working in safari
Reported by: | sidfishman | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.9.0 |
Component: | ui.slider | Version: | 1.8.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
minified -> Result of expression 'g' [undefined] is not an object
original -> Result of expression 'closestHandle' [undefined] is not an object
Suggested fix:
minified
if(this.handles.length==1){g=d(this.handles[i])}
original
if ( this.handles.length == 1 ){ closestHandle = $( this.handles[index] ); }
Change History (5)
comment:1 follow-up: 2 Changed 12 years ago by
comment:2 Changed 12 years ago by
Replying to AzaToth:
unless I'm mistaken, safari isn't supported any more
I'm not sure why you would think Safari isn't supported.
comment:3 Changed 12 years ago by
The fix should be:
minified
if(this.handles.length==1){g=d(this.handles[0])}
original
if ( this.handles.length == 1 ){ closestHandle = $( this.handles[0] ); }
0 instead of i/index
comment:4 Changed 12 years ago by
Priority: | critical → major |
---|
comment:5 Changed 12 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
I'm not seeing any problems in Safari. Can you provide a page showing the problem?
Note: See
TracTickets for help on using
tickets.
unless I'm mistaken, safari isn't supported any more