mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Revert "Add catch block to try/finally in deferred. Fixes #9033. Test case needed." Line of exception was lost when debugging.
This reverts commit 0a80be67f4
.
This commit is contained in:
parent
db437be6e3
commit
39a2f29c29
@ -58,9 +58,8 @@ jQuery.extend({
|
|||||||
while( callbacks[ 0 ] ) {
|
while( callbacks[ 0 ] ) {
|
||||||
callbacks.shift().apply( context, args );
|
callbacks.shift().apply( context, args );
|
||||||
}
|
}
|
||||||
} catch( e ) {
|
}
|
||||||
throw e;
|
finally {
|
||||||
} finally {
|
|
||||||
fired = [ context, args ];
|
fired = [ context, args ];
|
||||||
firing = 0;
|
firing = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user