aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects.js
diff options
context:
space:
mode:
authorrwldrn <waldron.rick@gmail.com>2010-11-09 23:18:16 -0500
committerjeresig <jeresig@gmail.com>2010-11-09 23:18:16 -0500
commit795e880bba1f7f949df58748f7fd92e50296a8f4 (patch)
tree95279ad7d051c2071ce2222e8b314ef7c9fb15ce /src/effects.js
parenta64dc0405064d68c7b7cd0f0fc8ea60086cbcd21 (diff)
downloadjquery-795e880bba1f7f949df58748f7fd92e50296a8f4.tar.gz
jquery-795e880bba1f7f949df58748f7fd92e50296a8f4.zip
Fixes #7397; Adds 4 supporting unit tests.
Diffstat (limited to 'src/effects.js')
-rw-r--r--src/effects.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/effects.js b/src/effects.js
index 51ce0c577..bac2e1d51 100644
--- a/src/effects.js
+++ b/src/effects.js
@@ -61,10 +61,10 @@ jQuery.fn.extend({
} else {
for ( var i = 0, j = this.length; i < j; i++ ) {
var display = jQuery.css( this[i], "display" );
-
- if ( display !== "none" ) {
- jQuery.data( this[i], "olddisplay", display );
- }
+
+ if ( !jQuery.data( this[i], "olddisplay" ) && display !== "none" ) {
+ jQuery.data( this[i], "olddisplay", display );
+ }
}
// Set the display of the elements in a second loop