aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fx/fx.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fx/fx.js b/src/fx/fx.js
index 4c38413ef..d44fd82de 100644
--- a/src/fx/fx.js
+++ b/src/fx/fx.js
@@ -443,7 +443,10 @@ jQuery.extend({
jQuery.attr(y, "opacity", z.now); // Let attr handle opacity
else {
y[prop] = parseInt(z.now) + "px";
- y.display = "block"; // Set display property to block for animation
+
+ // Set display property to block for height/width animations
+ if ( prop == "height" || prop == "width" )
+ y.display = "block";
}
};