[mirotalksfu] - fix FS on ESC

هذا الالتزام موجود في:
Miroslav Pejic
2021-12-14 20:55:44 +01:00
الأصل d04294133a
التزام 8502ef3f8c

عرض الملف

@@ -1367,6 +1367,18 @@ class RoomClient {
this.toggleFullScreen(videoPlayer);
this.isVideoOnFullScreen = this.isVideoOnFullScreen ? false : true;
});
videoPlayer.addEventListener('fullscreenchange', (e) => {
if (!document.fullscreenElement) {
videoPlayer.style.pointerEvents = 'auto';
this.isVideoOnFullScreen = false;
}
});
videoPlayer.addEventListener('webkitfullscreenchange', (e) => {
if (!document.webkitIsFullScreen) {
videoPlayer.style.pointerEvents = 'auto';
this.isVideoOnFullScreen = false;
}
});
}
// ####################################################