Fixed the issue with queued effects becoming corrupted.
This commit is contained in:
parent
9c173f754c
commit
ec38c6086c
1 changed files with 5 additions and 5 deletions
10
src/fx/fx.js
10
src/fx/fx.js
|
@ -475,11 +475,6 @@ jQuery.extend({
|
||||||
// Reset the overflow
|
// Reset the overflow
|
||||||
y.overflow = z.el.oldOverflow;
|
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
|
// Reset the property, if the item has been hidden
|
||||||
if ( z.o.hide )
|
if ( z.o.hide )
|
||||||
y[ prop ] = z.el.orig[ prop ].constructor == Number && prop != "opacity" ?
|
y[ prop ] = z.el.orig[ prop ].constructor == Number && prop != "opacity" ?
|
||||||
|
@ -487,6 +482,11 @@ jQuery.extend({
|
||||||
|
|
||||||
// set its height and/or width to auto
|
// set its height and/or width to auto
|
||||||
jQuery.setAuto( z.el, prop );
|
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 {
|
} else {
|
||||||
// Figure out where in the animation we are and set the number
|
// Figure out where in the animation we are and set the number
|
||||||
var p = (t - this.startTime) / z.o.duration;
|
var p = (t - this.startTime) / z.o.duration;
|
||||||
|
|
Loading…
Add table
Reference in a new issue