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
Download in other formats:
|