diff --git a/resources/js/designer/move.ts b/resources/js/designer/move.ts index f92fb62b7f..9c73c9f060 100644 --- a/resources/js/designer/move.ts +++ b/resources/js/designer/move.ts @@ -525,8 +525,11 @@ const requestFullscreen = function (e) { const fullscreenEnabled = function () { // eslint-disable-next-line compat/compat return document.fullscreenEnabled || + // @ts-ignore: Exists on Webkit document.webkitFullscreenEnabled || + // @ts-ignore: Exists on Firefox document.mozFullScreenEnabled || + // @ts-ignore: Exists on Microsoft document.msFullscreenEnabled; };