aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects.js
diff options
context:
space:
mode:
authorColin Snover <github.com@zetafleet.com>2010-12-14 00:37:11 -0600
committerColin Snover <github.com@zetafleet.com>2010-12-14 00:37:11 -0600
commitefcf1a79212de53b3eb21e4603b2c722befc767b (patch)
treeec2a5fd0c04b5357283c2be714518cae894ad9ae /src/effects.js
parentc9c9057c4d4097767ca181bdb4bb27d6fd2d8fbd (diff)
parenta59bb30d0a5ea0d3d73285c6fed0fbe00b23321f (diff)
downloadjquery-efcf1a79212de53b3eb21e4603b2c722befc767b.tar.gz
jquery-efcf1a79212de53b3eb21e4603b2c722befc767b.zip
Merge branch 'bug_7397' of https://github.com/rwldrn/jquery into rwldrn-bug_7397
Diffstat (limited to 'src/effects.js')
-rw-r--r--src/effects.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effects.js b/src/effects.js
index 067383bc4..600707427 100644
--- a/src/effects.js
+++ b/src/effects.js
@@ -61,8 +61,8 @@ jQuery.fn.extend({
} else {
for ( var i = 0, j = this.length; i < j; i++ ) {
var display = jQuery.css( this[i], "display" );
-
- if ( display !== "none" ) {
+
+ if ( display !== "none" && !jQuery.data( this[i], "olddisplay" ) ) {
jQuery.data( this[i], "olddisplay", display );
}
}