Polyfill not working for IE10
See original GitHub issueHey guys,
I’m using ember 2.14.0
.
For some reasons when starting the app with IE10 following error occurs:
TypeError: Object doesn't support property or method 'resolve'
at Anonymous function (http://<ip>/assets/vendor.js:75866:9)
at tryCatch (http://<ip>/assets/vendor.js:75103:7)
at invokeCallback (http://<ip>/assets/vendor.js:75118:7)
at publish (http://<ip>/assets/vendor.js:75086:9)
at Anonymous function (http://<ip>/assets/vendor.js:65900:9)
at invokeWithOnError (http://<ip>/assets/vendor.js:31244:21)
at flush (http://<ip>/assets/vendor.js:31130:21)
at flush (http://<ip>/assets/vendor.js:31293:21)
at end (http://<ip>/assets/vendor.js:31372:17)
at run (http://<ip>/assets/vendor.js:31451:21)
Running the same app with IE11, everything is fine.
I included
'ember-cli-babel': {
includePolyfill: true
}
in my ember-cli-build file.
After some searching I suspect that it has something to do with polyfilling ES6 methods. But I am not sure. Any ideas on this?
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
React and core-js can't polyfill for IE10 - Stack Overflow
Weird admin settings I have no control over. Any way, support for IE 10 was needed. In IE 11 it worked fine, using...
Read more >Syntax error - IE10 - Polyfill - Development Mode #6989 - GitHub
I would see the react svg logo and the default text and background color in IE10, with no script error in IE's dev...
Read more >React JS poly-fill Solve Problem for INTERNET EXPLORER ...
when you use React JS, you can't see your website in IE browser. so to solve this problem, you can use What I...
Read more >IE11 and the Missing Polyfills - DEV Community
So IE11 is the minumum requirement, a vast majority of sites are designed to work with. But what if I am using IE10,...
Read more >Supported Browsers and Features | Create React App
Support for Internet Explorer 9, 10, and 11 requires polyfills. For a set of polyfills to support older browsers, use react-app-polyfill.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It seems to be related to the
finally
block of a ajax promise. Removingfinally
solved it.Sorry for letting this linger, I think at this point IE10 is completely unsupported.