pl-fe: remove mozRequestFullScreen
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
627a810503
commit
e2ab865230
1 changed files with 1 additions and 9 deletions
|
@ -4,9 +4,7 @@
|
|||
const isFullscreen = (): boolean => Boolean(
|
||||
document.fullscreenElement ||
|
||||
// @ts-ignore
|
||||
document.webkitFullscreenElement ||
|
||||
// @ts-ignore
|
||||
document.mozFullScreenElement,
|
||||
document.webkitFullscreenElement,
|
||||
);
|
||||
|
||||
const exitFullscreen = (): void => {
|
||||
|
@ -15,9 +13,6 @@ const exitFullscreen = (): void => {
|
|||
} else if ('webkitExitFullscreen' in document) {
|
||||
// @ts-ignore
|
||||
document.webkitExitFullscreen();
|
||||
} else if ('mozCancelFullScreen' in document) {
|
||||
// @ts-ignore
|
||||
document.mozCancelFullScreen();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -27,9 +22,6 @@ const requestFullscreen = (el: Element): void => {
|
|||
} else if ('webkitRequestFullscreen' in el) {
|
||||
// @ts-ignore
|
||||
el.webkitRequestFullscreen();
|
||||
} else if ('mozRequestFullScreen' in el) {
|
||||
// @ts-ignore
|
||||
el.mozRequestFullScreen();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue