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 ] ) {
|
||||
callbacks.shift().apply( context, args );
|
||||
}
|
||||
} catch( e ) {
|
||||
throw e;
|
||||
} finally {
|
||||
}
|
||||
finally {
|
||||
fired = [ context, args ];
|
||||
firing = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue