-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Raven 2.1.0 broke IE8 #498
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
Hmm, so this was changed as a part of the switch to eslint. I just ran changed this back to
@benvinegar thoughts? Or does eslint just not care about IE8? |
Looks like there's this |
mattrobenolt
added a commit
that referenced
this issue
Feb 8, 2016
eslint by default wanted to change this to .function instead of the correct ['function'], so this also changes the rule. Fixes GH-498
benvinegar
pushed a commit
that referenced
this issue
Feb 9, 2016
eslint by default wanted to change this to .function instead of the correct ['function'], so this also changes the rule. Fixes GH-498
1 task
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
This line:
/(Raven|TraceKit)./.test(normalized['function']) ||
Was changed to:
/(Raven|TraceKit)./.test(normalized.function) ||
and broke IE8 completely
The text was updated successfully, but these errors were encountered: