mirror of
https://github.com/jquery/jquery.git
synced 2026-01-25 12:17:55 -05:00
Reorders condition at L65 for efficiency
This commit is contained in:
4
src/effects.js
vendored
4
src/effects.js
vendored
@@ -62,8 +62,8 @@ jQuery.fn.extend({
|
||||
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" ) ) {
|
||||
jQuery.data( this[i], "olddisplay", display );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user