Side navigation
#9993 closed bug (duplicate)
Opened August 07, 2011 07:26AM UTC
Closed August 07, 2011 12:49PM UTC
Last modified August 07, 2011 12:49PM UTC
Jquery throws IE8 specific error
Reported by: | daniel.diaz@goopytravel.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
IE8 throws an error when arrives to resolveWith: function( context, args ) {
......
try {..}
finally {
...},
It happens cause IE8 needs try / catch / finally, I'm not sure, but I think it was implemented on IE9.
To fix the issue, just adding a catch clause. For instance:
resolveWith: function( context, args ) {
......
try {..}
catch(e){// Added by Niel 06.08.211 to fix.
}
finally {
...},
Thank you so much,
Daniel