Fixes #7397; 4 supporting unit tests
This commit is contained in:
parent
a64dc04050
commit
118c8c4600
2 changed files with 41 additions and 5 deletions
11
src/effects.js
vendored
11
src/effects.js
vendored
|
@ -60,11 +60,12 @@ 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 );
|
||||
}
|
||||
var display = jQuery.css( this[i], "display" ),
|
||||
old = jQuery.data( this[i], "olddisplay" );
|
||||
|
||||
if ( !old && display !== "none" ) {
|
||||
jQuery.data( this[i], "olddisplay", display );
|
||||
}
|
||||
}
|
||||
|
||||
// Set the display of the elements in a second loop
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue