-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
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
IE11 Compatibility? #134
Comments
I am new to this library and have not contributed but I feel like you may find it hard to get those who do contribute to work on support for IE |
Can you share the error message? I do not have an IE11 setup with me but can try to resolve the issue, if you can help with validation. |
I also ran into this issue. (I wish I didn't have to support IE11, but it still ships with Windows 10!) IE gives some errors for the
This refers to a line of code which contains a regex, presumably the same as @davidh71 found. IE stops execution of the JS at this point, so the token is not sent with POST requests. Looking at that line, I found that the "template literals" are not supported in IE11, so anything like After editing those, it got rid of the "invalid character" errors, but then got another error "Object doesn't support this action" relating to line 348. After that, IE stopped giving errors, and it seems to work in IE and Firefox/Chrome (but haven't tested thoroughly yet). |
Hi,
Running in ie11 I get script errors because of the backticks in the regex.
Is this known issue?
Thanks
The text was updated successfully, but these errors were encountered: