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
CustomEvent actually exists natively in IE9 when in standards mode however it fails when used so even though it exists it needs to be replaced with the polyfil code.
newCustomEvent('evt');// results in "Object doesn't support this action"
this condition is the culprit @ line 127
!this.CustomEvent&&(function(){// your code here})()
if can be augmented to the following (or similar) to resolve the issue
try{newwindow.CustomEvent('?')}catch(e){// your code here}
a similar check should be added around the CustomEvent defineGetter declaration
The text was updated successfully, but these errors were encountered:
rmowder
changed the title
IE9 fails on new CustomEvent
IE9 fails on new CustomEvent when in standards mode
Aug 13, 2014
CustomEvent actually exists natively in IE9 when in standards mode however it fails when used so even though it exists it needs to be replaced with the polyfil code.
this condition is the culprit @ line 127
if can be augmented to the following (or similar) to resolve the issue
a similar check should be added around the CustomEvent defineGetter declaration
The text was updated successfully, but these errors were encountered: