This repository has been archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
Reference to Symbol breaks IE11 #3
Comments
I just ran into the same issue, would be great to get a fix in for this. Without a patch the redux-devtools are unusable in IE. Thanks! |
Closing this since I haven't heard back for a month. |
Hi @chibicode this bug appeared in 0.5.2. It seems like 0.4.0 was good. |
I believe it's caused by your recent upgrade to Babel 6, and you might need to add babel-plugin-transform-runtime to your .babelrc. |
chibicode
added a commit
that referenced
this issue
Feb 11, 2016
@ZxMYS I just pushed 0.5.3 w/ |
Yes now it works again. Thanks! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
After starting to use redux-devtools, I noticed my app was broken in IE11, caused by the unguarded
typeof obj[Symbol.iterator] === 'function'
check inobj-type.js
Guarding the check with
typeof Symbol !== 'undefined'
would make for a quick fix.Edit: I've just spotted that PR #2 is intended to fix this.
The text was updated successfully, but these errors were encountered: