-
-
Notifications
You must be signed in to change notification settings - Fork 132
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
Number.isNaN and Number.parseInt breaks app in IE #343
Comments
Well actually it can be fixed by adding the following in ember-cli-build.js: "ember-cli-babel": {
includePolyfill: true
} |
We took the approach of doing alphasights/ember-scrollable#69 in A more involved but proper solution would be to leverage the new targets in 2.12+ |
Turns out https://embercommunity.slack.com/archives/C045BNHAP/p1498049676269826 |
thanks for the investigation @buschtoens |
Until we get this functionality, a conditional polyfill in |
Hi,
I don't think you should use Number.isNaN and Number.parseInt in the lt-body component:
https://github.com/offirgolan/ember-light-table/blob/master/addon/components/lt-body.js
as it breaks apps in IE. I've tested IE 11.
I think you should use a polyfill or isNaN, and parseInt directly.
Thanks,
Camille
The text was updated successfully, but these errors were encountered: