diff options
author | jaubourg <j@ubourg.net> | 2011-02-24 00:32:30 +0100 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-02-24 00:32:30 +0100 |
commit | 5d9db486c774c10293d0813c89dfdbd973120030 (patch) | |
tree | e6f91e3517fff2a9c5f3d3c59ea903c284eefbdb | |
parent | 83d1a1fd56cf00cea40c73564ea53588984f7255 (diff) | |
download | jquery-5d9db486c774c10293d0813c89dfdbd973120030.tar.gz jquery-5d9db486c774c10293d0813c89dfdbd973120030.zip |
Revert "Fixes #8353. Adds a catch block in resolveWith so that the finally block gets executed in IE7 and IE6."
This reverts commit cacea6f7e778d42cda56066a6b1da8fb163410cc.
-rw-r--r-- | src/core.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core.js b/src/core.js index d77c818e6..036b2db6b 100644 --- a/src/core.js +++ b/src/core.js @@ -843,12 +843,6 @@ jQuery.extend({ callbacks.shift().apply( context, args ); } } - // We have to add a catch block for - // IE prior to 8 or else the finally - // block will never get executed - catch (e) { - throw e; - } finally { fired = [ context, args ]; firing = 0; |