diff --git a/src/effects.js b/src/effects.js index bac2e1d51..51ce0c577 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 ( !jQuery.data( this[i], "olddisplay" ) && display !== "none" ) { - jQuery.data( this[i], "olddisplay", display ); - } + + if ( display !== "none" ) { + jQuery.data( this[i], "olddisplay", display ); + } } // Set the display of the elements in a second loop diff --git a/test/unit/effects.js b/test/unit/effects.js index aca926384..74b336f1f 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -130,41 +130,6 @@ test("show(Number) - other displays", function() { }); }); - - -// Supports #7397 -test("Persist correct display value", function() { - expect(4); - QUnit.reset(); - stop(); - - // #show-tests * is set display: none in CSS - jQuery("#main").append('