Skip to main content

All Questions

0 votes
1 answer
267 views

Need Suggestions for IE11 SCRIPT1010 Error

I'm developing an Office Web Add-In using the Office-JS package. The add-in functions as expected on Mac, but fails to load on Windows. The add-in renders using a Safari based webview on Mac, but an ...
Isaac N.'s user avatar
3 votes
1 answer
3k views

Map(iterable) alternative for IE 11

Unfortunately I have to support IE11. I create my map with this code (polyfill for .entries already used): const map = new Map(Object.entries(array)); but because of IE11 not supporting the ...
breezertwo's user avatar
2 votes
0 answers
2k views

Uncaught (in promise): [object Undefined]

I have been getting this specific error("Uncaught (in promise): [object Undefined]") in Internet Explorer which seems to be pertaining to polyfills. This seems to be happening when a new promise is ...
karthik's user avatar
  • 39
1 vote
1 answer
2k views

Angular 7: need polyfill for 'Class' in npm package

I faced with problem that my app based on Angular 7 doesn't working in IE 11. I'm using npm package which starts in index.js from class PackageClass { // code } And at all browsers it works ...
hofshteyn's user avatar
  • 1,272
4 votes
1 answer
5k views

Vue app blank page in IE 11 or lower even with polyfills

I have a Vue app running in Firefox, Edge, and Chrome, however, in IE 11 (or lower), I see a blank page. And in the console of IE is see something like SCRIPT1002: Syntax error app.js and SCRIPT5022: ...
Gilian's user avatar
  • 1,569
1 vote
1 answer
909 views

Invalid argument when running Angular 5 app on IE11

My Angular 5 app works fine when I publish and run the PROD build using Chrome, however, I keep getting the Invalid argument error when I run the app on IE11. The error message gives no indication on ...
Ali Al-Munayer's user avatar
2 votes
2 answers
5k views

Angular 5 (IE11) Error: Uncaught (in promise): Error: Cannot match any routes

I am having trouble with IE11 in Angular 5 a couple of days. I have turned on polyfills: import 'core-js/es6/symbol'; import 'core-js/es6/object'; import 'core-js/es7/object'; import 'core-js/es6/...
x-man's user avatar
  • 49
3 votes
2 answers
3k views

Object.assign() in IE11 with Angular2

I know that this issue has been discussed a billion times, but it seems that none of the solutions I can find here are helping in my case. This is what my polyfills.browser.ts looks like right now: ...
Davide De Santis's user avatar
1 vote
1 answer
3k views

polyfills issues with Internet explorer 11 and angular HttpClient post

I'm having trouble getting my angular 4 application to work in IE 11 with the new httpclient post. This problem is only related to IE11 and is working fine in chrome. I keep getting the error Invalid ...
Riekard's user avatar
  • 87