IE is now forced layout if it doesn't have it (such that opacity now works as expected). (Ticket #4).
This commit is contained in:
parent
aabfccf371
commit
4c572bdf56
1 changed files with 5 additions and 0 deletions
5
fx/fx.js
5
fx/fx.js
|
@ -211,6 +211,11 @@ $.fx = function(el,op,ty){
|
|||
}
|
||||
};
|
||||
|
||||
// IE has trouble with opacity if it doesn't have layout
|
||||
if ( $.browser == "msie" && !z.el.currentStyle.hasLayout ) {
|
||||
y.zoom = 1;
|
||||
}
|
||||
|
||||
// Remember the overflow of the element
|
||||
z.oldOverflow = y.overflow;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue