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:
b91eef0
)
Fixed an edge case in show() where the css says the display should be none. In that...
author
David Serduke
<davidserduke@gmail.com>
Sat, 12 Jan 2008 01:06:37 +0000
(
01:06
+0000)
committer
David Serduke
<davidserduke@gmail.com>
Sat, 12 Jan 2008 01:06:37 +0000
(
01:06
+0000)
src/fx.js
patch
|
blob
|
history
diff --git
a/src/fx.js
b/src/fx.js
index
b4606a8
..
64cfbc6
100644
(file)
--- a/
src/fx.js
+++ b/
src/fx.js
@@
-10,6
+10,9
@@
jQuery.fn.extend({
if ( jQuery.css(this,"display") == "none" ) {
var elem = jQuery("<" + this.tagName + " />").appendTo("body");
this.style.display = elem.css("display");
+ // handle an edge condition where css is - div { display:none; } or similar
+ if (this.style.display == "none")
+ this.style.display = "block";
elem.remove();
}
}).end();