Add catch block to try/finally in deferred. Fixes #9033. Test case needed.

master
timmywil 2011-06-06 20:13:50 -04:00
parent d66c3b6d84
commit 0a80be67f4
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}