mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 19:08:32 -05:00
Add catch block to try/finally in deferred. Fixes #9033. Test case needed.
This commit is contained in:
@@ -58,8 +58,9 @@ jQuery.extend({
|
||||
while( callbacks[ 0 ] ) {
|
||||
callbacks.shift().apply( context, args );
|
||||
}
|
||||
}
|
||||
finally {
|
||||
} catch( e ) {
|
||||
throw e;
|
||||
} finally {
|
||||
fired = [ context, args ];
|
||||
firing = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user