git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aabfccf
)
IE is now forced layout if it doesn't have it (such that opacity now works as expecte...
author
John Resig
<jeresig@gmail.com>
Fri, 16 Jun 2006 02:01:39 +0000
(
02:01
+0000)
committer
John Resig
<jeresig@gmail.com>
Fri, 16 Jun 2006 02:01:39 +0000
(
02:01
+0000)
fx/fx.js
patch
|
blob
|
history
diff --git
a/fx/fx.js
b/fx/fx.js
index
665f895
..
559e4f6
100644
(file)
--- a/
fx/fx.js
+++ b/
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;