UNPKG

angular2-materialize

Version:
10 lines (8 loc) 349 B
export function CustomEvent ( type, detail = undefined, params = { bubbles: false, cancelable: false } ) { var event = document.createEvent( 'CustomEvent' ); event.initCustomEvent( type, params.bubbles, params.cancelable, detail ); return event; } if ("Event" in window) { CustomEvent.prototype = (window as any).Event.prototype; }