Bug Tracker

Ticket #1627 (closed bug: fixed)

Opened 1 year ago

Last modified 9 months ago

BUG: IE6 png fix and fadeIn

Reported by: jonahfox Assigned to: anonymous
Type: bug Priority: minor
Milestone: 1.2.2 Component: core
Version: 1.2 Keywords:
Cc: Needs: Review

Description

bug in 1.2 (and previous jqueries) when using png fixes and effects such as fadeIn()

line 881.

(parseFloat( elem.filter.match(/opacity=([)]*)/) )[1]) / 100).toString() : "";

The problem is caused, because elem.filter is not null (using DXAlpha..) but does not match /opacity/ and thus we are attempting to evaluate null[1]

it can be fixed with =>

(parseFloat( (elem.filter.match(/opacity=([)]*)/) [0,"100"])[1]) / 100).toString() : "";

Attachments

Change History

Changed 9 months ago by davidserduke

  • status changed from new to closed
  • resolution set to fixed
  • milestone changed from 1.2.1 to 1.2.2

I believe this is fixed in [4013]. Although the fix was not for this specific ticket, the result was a non-null filter that doesn't have opacity in it should now work.

Note: See TracTickets for help on using tickets.