-
Notifications
You must be signed in to change notification settings - Fork 388
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
TypeError: Object doesn't support property or method 'next' in IE browser #461
Comments
Can you share the code at line 438 in Even better, could you use the debugger or console.log and figure out exactly what arguments are being passed to it? |
Hi @ljharb, Thank you. I debugged the code as suggested and found the below line is causing the issue in ima3.js bw = function () { |
Could you please help us in resolving this? |
Specifically it looks like Which version of IE is this? It works fine for me in IE 10 and 11 on the es6-shim test page, for example. Are you sure you're not loading any other polyfills, like babel-runtime/core-js? |
can you confirm that running that code in the console reproduces the same error? - Yes, we are getting the same error when we use it in the console log. Which version of IE is this? - IE11 Are you sure you're not loading any other polyfills, like babel-runtime/core-js? Yes, we are using the below dev dependency. So that it will automatically add babel-runtime/core-js. Please help us with what has to do? "@uirouter/angularjs": "^0.2.18", |
Can we add polyfill for this issue? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from#Polyfill |
core-js and es6-shim are never intended to be used together; they do the same things. If you can’t avoid using babel-runtime, you’ll need to use a bundler to omit core-js if you want to use es6-shim. |
The polyfills on MDN are not production quality and should never be used. |
Can you please share any helpful document or link to create bundler for omit core-js in angular |
It depends on what bundler you're using; webpack and browserify each have their own docs and tutorials all over the web. Typically only the top-level app would be pulling in core-js or es6-shim tho; are you sure your own code isn't doing it? |
When we try to play video content in IE we are getting the below error.
Can someone help me to close this issue?
The text was updated successfully, but these errors were encountered: