diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-06-08 10:55:52 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-06-08 10:55:52 -0400 |
commit | 39a2f29c29fdb296bb178b3c55d805ea0dc2f0ce (patch) | |
tree | 1d56c70a31483d203b5c8c20e101b37930484777 /src/deferred.js | |
parent | db437be6e31c924aade13bb719f9facc122b3d9c (diff) | |
download | jquery-39a2f29c29fdb296bb178b3c55d805ea0dc2f0ce.tar.gz jquery-39a2f29c29fdb296bb178b3c55d805ea0dc2f0ce.zip |
Revert "Add catch block to try/finally in deferred. Fixes #9033. Test case needed." Line of exception was lost when debugging.
This reverts commit 0a80be67f4fe968d99777564a02aeddbde1fbf35.
Diffstat (limited to 'src/deferred.js')
-rw-r--r-- | src/deferred.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/deferred.js b/src/deferred.js index 3d53344e3..5cc5fb5be 100644 --- a/src/deferred.js +++ b/src/deferred.js @@ -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; } |