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
While using demos in Internet Explorer, library throws error Object doesn't support this action. This error caused by below snippet. scope.dispatchEvent(new CustomEvent('lmddbeforestart', {'bubbles': true})).
Reported error is coming because for IE versions >= 9, custom events must be created using document.createEvent() and then initialized using the initCustomEvent method of the previously created event.
So after doing stackoverflow I found we can fix this issue by adding below pollyfill provided by mozila firefox.
While using demos in Internet Explorer, library throws error Object doesn't support this action. This error caused by below snippet.
scope.dispatchEvent(new CustomEvent('lmddbeforestart', {'bubbles': true}))
.Reported error is coming because for IE versions >= 9, custom events must be created using document.createEvent() and then initialized using the initCustomEvent method of the previously created event.
So after doing stackoverflow I found we can fix this issue by adding below pollyfill provided by mozila firefox.
The text was updated successfully, but these errors were encountered: