Michael Schantl

Results 2 comments of Michael Schantl
trafficstars

Have you had any issues recently?

Quick & dirty solution: ```typescript window.BeforeUnloadEvent = class BeforeUnloadEvent extends CustomEvent { constructor() { super('beforeunload', { cancelable: true }); } }; ```