From ec38c6086c3d0efd65e9c6060cb641e80ae3b2a9 Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 17 Aug 2006 02:38:34 +0000 Subject: [PATCH] Fixed the issue with queued effects becoming corrupted. --- src/fx/fx.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/fx/fx.js b/src/fx/fx.js index 45cc2d9..de65cfa 100644 --- a/src/fx/fx.js +++ b/src/fx/fx.js @@ -475,11 +475,6 @@ jQuery.extend({ // Reset the overflow y.overflow = z.el.oldOverflow; - // If a callback was provided, execute it - if( z.o.complete && z.o.complete.constructor == Function ) - // Execute the complete function - z.o.complete.apply( z.el ); - // Reset the property, if the item has been hidden if ( z.o.hide ) y[ prop ] = z.el.orig[ prop ].constructor == Number && prop != "opacity" ? @@ -487,6 +482,11 @@ jQuery.extend({ // set its height and/or width to auto jQuery.setAuto( z.el, prop ); + + // If a callback was provided, execute it + if( z.o.complete && z.o.complete.constructor == Function ) + // Execute the complete function + z.o.complete.apply( z.el ); } else { // Figure out where in the animation we are and set the number var p = (t - this.startTime) / z.o.duration; -- 1.7.10.4