Small fix to check whether fullscreen mode is available
parent
97861a1084
commit
ffb8686877
|
@ -243,13 +243,11 @@ const settingsManager = new (function () {
|
||||||
__fx.makeMainMenuTransparent = settings.customBackgroundUrl !== "";
|
__fx.makeMainMenuTransparent = settings.customBackgroundUrl !== "";
|
||||||
};
|
};
|
||||||
|
|
||||||
if (settings.useFullscreenMode && document.fullscreenEnabled) {
|
if (settings.useFullscreenMode) tryEnterFullscreen();
|
||||||
tryEnterFullscreen();
|
|
||||||
}
|
|
||||||
})();
|
})();
|
||||||
|
|
||||||
export function tryEnterFullscreen() {
|
export function tryEnterFullscreen() {
|
||||||
if (document.fullscreenElement !== null) return;
|
if (document.fullscreenElement !== null || !document.fullscreenEnabled) return;
|
||||||
document.documentElement
|
document.documentElement
|
||||||
.requestFullscreen({ navigationUI: "hide" })
|
.requestFullscreen({ navigationUI: "hide" })
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
|
Loading…
Reference in New Issue