1
0
mirror of https://github.com/AirenSoft/OvenPlayer.git synced 2025-03-15 19:12:50 +00:00

Fix an issue where full screen could not be exited

This commit is contained in:
Sangwon Oh
2024-07-10 11:51:01 +09:00
parent a705904943
commit 3329af6f8c
4 changed files with 5 additions and 5 deletions

2
dist/ovenplayer.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
{
"name": "ovenplayer",
"version": "0.10.37.1",
"version": "0.10.37.2",
"description": "OvenPlayer is Open-Source HTML5 Player. OvenPlayer supports WebRTC Signaling from OvenMediaEngine for Sub-Second Latency Streaming.",
"main": "dist/ovenplayer.js",
"scripts": {

@ -69,9 +69,9 @@ const FullScreenButton = function ($container, api) {
} else {
if (isForceMode) {
$root.removeClass("op-fullscreen");
document.body.classList.remove('op-fullscreen-helper');
}
document.body.classList.remove('op-fullscreen-helper');
$root.removeClass("op-fullscreen");
isFullScreen = false;
$iconExpand.show();
$iconCompress.hide();