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
Hi @furcan
I see that kioskboard is not working on IE, need some polyfill to resolve this issue. The good news is that we have done it. Could you please insert it to the right place?
(function(){if(typeofwindow.Event==="function")returnfalse;//kioskboard on IE (IE: typeof window.Event is object, othe browsers: typeof window.Event is function)functionEvent(event,params){params=params||{bubbles: false,cancelable: false,detail: undefined};varevt=document.createEvent('CustomEvent');evt.initCustomEvent(event,params.bubbles,params.cancelable,params.detail);returnevt;}Event.prototype=window.Event.prototype;window.Event=Event;})();
The text was updated successfully, but these errors were encountered:
surexxx
changed the title
KioskBoard not supports IE
KioskBoard don't supports IE
Aug 19, 2020
surexxx
changed the title
KioskBoard don't supports IE
KioskBoard doesn't support IE
Aug 19, 2020
Fixed: Fixes on checking the "window.location.protocol". ([#4](#4))
Added: IE polyfill for the CustomEvent constructor. ([#3](#3))
Changed: Code Review.
Hi @furcan
I see that kioskboard is not working on IE, need some polyfill to resolve this issue. The good news is that we have done it. Could you please insert it to the right place?
The text was updated successfully, but these errors were encountered: