]> source.dussan.org Git - jquery.git/commitdiff
Effects: Don't overwrite display:none when .hide()ing hidden elements
authorRichard Gibson <richard.gibson@gmail.com>
Thu, 20 Mar 2014 07:39:36 +0000 (03:39 -0400)
committerDave Methvin <dave.methvin@gmail.com>
Fri, 21 Mar 2014 02:54:38 +0000 (22:54 -0400)
Fixes #14848
Closes gh-1548

src/effects.js
test/unit/effects.js

index e3ccefff61491edbbf604a8c0794f914900396e2..69d1effc5deb1dbbf73c3a933ca3f66fdf66ca91 100644 (file)
@@ -160,11 +160,8 @@ function defaultPrefilter( elem, props, opts ) {
                // Set display property to inline-block for height/width
                // animations on inline elements that are having width/height animated
                display = jQuery.css( elem, "display" );
-               // Get default display if display is currently "none"
-               if ( display === "none" ) {
-                       display = defaultDisplay( elem.nodeName );
-               }
-               if ( display === "inline" &&
+               // Test default display if display is currently "none"
+               if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" &&
                                jQuery.css( elem, "float" ) === "none" ) {
 
                        style.display = "inline-block";
@@ -196,6 +193,10 @@ function defaultPrefilter( elem, props, opts ) {
                                }
                        }
                        orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
+
+               // Any non-fx value stops us from restoring the original display value
+               } else {
+                       display = undefined;
                }
        }
 
@@ -238,6 +239,10 @@ function defaultPrefilter( elem, props, opts ) {
                                }
                        }
                }
+
+       // If this is a noop like .hide().hide(), restore an overwritten display value
+       } else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
+               style.display = display;
        }
 }
 
index 3016bdbf3d88b9cb790c408c2c670cae41357a96..15e67ec1a2fe46b5f471f42867b43a8d997a3ece 100644 (file)
@@ -1620,6 +1620,19 @@ test( "hide, fadeOut and slideUp called on element width height and width = 0 sh
        this.clock.tick( 400 );
 });
 
+test( "hide should not leave hidden inline elements visible (#14848)", 2, function() {
+       var el = jQuery("#simon1");
+
+       el.hide( 1, function() {
+               equal( el.css( "display" ), "none", "hidden" );
+               el.hide( 1, function() {
+                       equal( el.css( "display" ), "none", "still hidden" );
+               });
+       });
+
+       this.clock.tick( 100 );
+});
+
 test( "Handle queue:false promises", 10, function() {
        var foo = jQuery( "#foo" ).clone().addBack(),
                step = 1;