Search and Top Navigation
#5906 closed bug (worksforme)
Opened August 06, 2010 12:52AM UTC
Closed October 27, 2010 07:41PM UTC
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] ); }
Attachments (0)
Change History (5)
Changed August 07, 2010 01:28AM UTC by comment:1
Changed August 08, 2010 02:30PM UTC by comment:2
Replying to [comment:1 AzaToth]:
unless I'm mistaken, safari isn't supported any more
I'm not sure why you would think Safari isn't supported.
Changed August 17, 2010 01:41PM UTC by comment:3
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
Changed October 19, 2010 03:33PM UTC by comment:4
priority: | critical → major |
---|
Changed October 27, 2010 07:41PM UTC by comment:5
resolution: | → worksforme |
---|---|
status: | new → closed |
I'm not seeing any problems in Safari. Can you provide a page showing the problem?
unless I'm mistaken, safari isn't supported any more