Bug Tracker

Modify

Ticket #1837 (closed bug: fixed)

Opened 6 years ago

Last modified 5 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 5 years ago by brandon

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

This appears to be fixed in the latest SVN

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.