We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/ded/reqwest/blob/master/reqwest.js#L414 throws in IE because catch is a reserved word http://msdn.microsoft.com/en-us/library/ie/0779sbks(v=vs.94).aspx
catch
, catch: function (fn) { return this.fail(fn) }
https://github.com/ded/reqwest/blob/master/reqwest.js#L297 throws in IE8 when resp is undefined
resp
undefined
var type = o['type'] || setType(resp.getResponseHeader('Content-Type'))
The text was updated successfully, but these errors were encountered:
Fix reqwest for IE. Fixes ded#151
689ed59
Successfully merging a pull request may close this issue.
https://github.com/ded/reqwest/blob/master/reqwest.js#L414 throws in IE because
catch
is a reserved word http://msdn.microsoft.com/en-us/library/ie/0779sbks(v=vs.94).aspxhttps://github.com/ded/reqwest/blob/master/reqwest.js#L297 throws in IE8 when
resp
isundefined
The text was updated successfully, but these errors were encountered: