Bug Tracker

Opened 16 years ago

Closed 16 years ago

#1838 closed bug (duplicate)

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() :

Change History (1)

comment:1 Changed 16 years ago by davidserduke

Resolution: duplicate
Status: newclosed

Duplicate of #1837.

Note: See TracTickets for help on using tickets.