Fixes #7397; Adds 4 supporting unit tests.

This commit is contained in:
rwldrn 2010-11-09 23:18:16 -05:00 committed by jeresig
parent a64dc04050
commit 795e880bba
2 changed files with 39 additions and 4 deletions

8
src/effects.js vendored
View file

@ -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