Bug Tracker

Modify

Ticket #1838 (closed bug: duplicate)

Opened 6 years ago

Last modified 6 years ago

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:
Blocking: Blocked by:

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

comment:1 Changed 6 years ago by davidserduke

  • Status changed from new to closed
  • Resolution set to duplicate

Duplicate of #1837.

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.