mirror of
https://github.com/jquery/jquery.git
synced 2026-02-03 18:14:55 -05:00
Animation callbacks keep their place in the queue stack. Fixes #9220.
This commit is contained in:
8
src/effects.js
vendored
8
src/effects.js
vendored
@@ -330,15 +330,15 @@ jQuery.extend({
|
||||
// Queueing
|
||||
opt.old = opt.complete;
|
||||
opt.complete = function( noUnmark ) {
|
||||
if ( jQuery.isFunction( opt.old ) ) {
|
||||
opt.old.call( this );
|
||||
}
|
||||
|
||||
if ( opt.queue !== false ) {
|
||||
jQuery.dequeue( this );
|
||||
} else if ( noUnmark !== false ) {
|
||||
jQuery._unmark( this );
|
||||
}
|
||||
|
||||
if ( jQuery.isFunction( opt.old ) ) {
|
||||
opt.old.call( this );
|
||||
}
|
||||
};
|
||||
|
||||
return opt;
|
||||
|
||||
Reference in New Issue
Block a user