FS-7509: fix mozilla full screen
This commit is contained in:
parent
d5e48302e6
commit
272541f423
|
@ -575,7 +575,7 @@ function exit_full_screen()
|
||||||
if (document.webkitFullscreenEnabled) {
|
if (document.webkitFullscreenEnabled) {
|
||||||
document.webkitExitFullscreen();
|
document.webkitExitFullscreen();
|
||||||
} else if (document.mozFullScreenEnabled) {
|
} else if (document.mozFullScreenEnabled) {
|
||||||
document.mozExitFullScreen();
|
document.mozCancelFullScreen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue