aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-07-05 04:27:46 +0000
committerJohn Resig <jeresig@gmail.com>2007-07-05 04:27:46 +0000
commit12ebfa3b01847f277aa6630e76697d5cd09560d0 (patch)
treeba20f6bf11c29eb7dd66d6d88a0c7f05910f0dd2
parent6f064fc9c527a46b4de16f0af310b98d1a87b0f4 (diff)
downloadjquery-12ebfa3b01847f277aa6630e76697d5cd09560d0.tar.gz
jquery-12ebfa3b01847f277aa6630e76697d5cd09560d0.zip
Overflow revert was completely borked when you animated multiple properties (like in .show() or .hide()) (see bug #1343).
-rw-r--r--src/fx/fx.js29
1 files changed, 16 insertions, 13 deletions
diff --git a/src/fx/fx.js b/src/fx/fx.js
index acd51226a..4c38413ef 100644
--- a/src/fx/fx.js
+++ b/src/fx/fx.js
@@ -315,10 +315,22 @@ jQuery.fn.extend({
opt = jQuery.speed(speed, easing, callback),
self = this;
- for ( var p in prop )
+ for ( var p in prop ) {
if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
return jQuery.isFunction(opt.complete) && opt.complete.apply(this);
+ if ( p == "height" || p == "width" ) {
+ // Store display property
+ opt.display = jQuery.css(this, "display");
+
+ // Make sure that nothing sneaks out
+ opt.overflow = this.style.overflow;
+ }
+ }
+
+ if ( opt.overflow != null )
+ this.style.overflow = "hidden";
+
this.curAnim = jQuery.extend({}, prop);
jQuery.each( prop, function(name, val){
@@ -422,15 +434,6 @@ jQuery.extend({
// The styles
var y = elem.style;
- if ( prop == "height" || prop == "width" ) {
- // Store display property
- var oldDisplay = jQuery.css(elem, "display");
-
- // Make sure that nothing sneaks out
- var oldOverflow = y.overflow;
- y.overflow = "hidden";
- }
-
// Simple function for setting a style value
z.a = function(){
if ( options.step )
@@ -529,12 +532,12 @@ jQuery.extend({
done = false;
if ( done ) {
- if ( oldDisplay != null ) {
+ if ( options.display != null ) {
// Reset the overflow
- y.overflow = oldOverflow;
+ y.overflow = options.overflow;
// Reset the display
- y.display = oldDisplay;
+ y.display = options.display;
if ( jQuery.css(elem, "display") == "none" )
y.display = "block";
}