Side navigation
#349 closed bug (invalid)
Opened November 02, 2006 05:08PM UTC
Closed November 17, 2006 03:13PM UTC
Last modified June 19, 2007 07:59AM UTC
Fix to API navigation in Safari
Reported by: | remy@ihatemusic.com | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | docs | Version: | |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The navigation for the API is broken in Safari, currently showing a list of random letters (mostly Js and Ss).
The bug is being caused by difference between the DOM in Safari.
The following line in 'js/doc.js:29':
return $.fn.text.apply( [a.childNodes[1]] ).replace(/^$./,"").substr(0,1).toUpperCase();
Should be changed to:
return $.fn.text.apply( [a.getElementsByTagName('SPAN')[2]] ).replace(/^$./,"").substr(0,1).toUpperCase();
Attachments (0)
Change History (1)
Changed November 17, 2006 03:13PM UTC by comment:1
resolution: | → invalid |
---|---|
status: | new → closed |
The current API docs will be replaced with a new version soon that doesn't have that bug anymore.