Bug Tracker

Modify

Ticket #65 (closed bug: fixed)

Opened 7 years ago

Last modified 6 years ago

Opacity style attribute bug

Reported by: john Owned by:
Priority: major Milestone: 1.0
Component: effects Version: 1.0
Keywords: Cc:
Blocking: Blocked by:

Description

John,

This bug ocuress becose IE don't have opacity as style attribute and z.cur function in fx returns NaN.

Get the current size z.cur = function(){

return parseFloat( jQuery.css(z.el,prop) );

};

z.cur with fix

Get the current size z.cur = function(){

if (prop == "opacity" && window.ActiveXObject)

return parseFloat( jQuery.css(z.el,"filter").replace(/D+/, )

100 ) / 100;

return parseFloat( jQuery.css(z.el,prop) );

};

Change History

comment:1 Changed 7 years ago by john

Fixed in SVN.

comment:2 Changed 7 years ago by anonymous

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

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.