Side navigation
#1837 closed bug (fixed)
Opened October 23, 2007 07:47PM UTC
Closed December 07, 2007 04:28AM UTC
IE6 Png fix and fades causes Javascript Error
Reported by: | jonahfox | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | core | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
line 1054
(parseFloat( elem.filter.match(/opacity=([^)]*)/) [1] ) /
100).toString().
Throws an error since on png fixed elements elem.filter.match may be null.
Can be fixed with :
(parseFloat( (elem.filter.match(/opacity=([^)]*)/) || [0,100]) [1] ) / 100).toString() :
Attachments (0)
Change History (1)
Changed December 07, 2007 04:28AM UTC by comment:1
resolution: | → fixed |
---|---|
status: | new → closed |
This appears to be fixed in the latest SVN