Side navigation
#1838 closed bug (duplicate)
Opened October 23, 2007 07:54PM UTC
Closed November 20, 2007 01:08AM 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 November 20, 2007 01:08AM UTC by comment:1
resolution: | → duplicate |
---|---|
status: | new → closed |
Duplicate of #1837.