From ce05a69743c5e4979c50cf4fbcf9cd16b530bc25 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Tue, 24 Feb 2026 15:53:24 +0100 Subject: [PATCH] Ignore some TypeScript "errors" about fullscreen properties Signed-off-by: William Desportes --- resources/js/designer/move.ts | 3 +++ 1 file changed, 3 insertions(+) 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; };