You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our project is utilizing the responsive-window feature and it's been working great until we tested in IE. We found that IE11 is throwing below error for any Angular component utilizing responsive-window.
ERROR TypeError: Object doesn't support this action
"ERROR"
{
[functions]: ,
__proto__: { },
description: "Object doesn't support this action",
message: "Object doesn't support this action",
name: "TypeError",
...
number: -2146827843,
stack: "TypeError: Object doesn't support this action
at registerWindow (eval code:52:17)
at ResponsiveWindow.prototype.ngOnInit (eval code:13:9)
at checkAndUpdateDirectiveInline (eval code:10822:9)
at checkAndUpdateNodeInline (eval code:12244:13)
...
It seems IE 11 and below can't handle the new Event() in below methods (I manually commented out that line and the issue went away). After doing some research, I found that this is a known issue and there's a CustomEvent polyfill for that. Can we have a patch for this issue?
Our project is utilizing the responsive-window feature and it's been working great until we tested in IE. We found that IE11 is throwing below error for any Angular component utilizing responsive-window.
It seems IE 11 and below can't handle the new Event() in below methods (I manually commented out that line and the issue went away). After doing some research, I found that this is a known issue and there's a CustomEvent polyfill for that. Can we have a patch for this issue?
https://stackoverflow.com/questions/26596123/internet-explorer-9-10-11-event-constructor-doesnt-work
The text was updated successfully, but these errors were encountered: