[mirotalksfu] - lint

هذا الالتزام موجود في:
Miroslav Pejic
2024-09-25 14:20:52 +02:00
الأصل 209c6d984a
التزام d1595db498

عرض الملف

@@ -3274,19 +3274,18 @@ class RoomClient {
// ####################################################
isFullScreenSupported() {
const fsSupported = (
const fsSupported =
document.fullscreenEnabled ||
document.webkitFullscreenEnabled ||
document.mozFullScreenEnabled ||
document.msFullscreenEnabled
);
if (fsSupported){
this.handleFullScreenEvents()
document.msFullscreenEnabled;
if (fsSupported) {
this.handleFullScreenEvents();
}
return fsSupported;
}
handleFullScreenEvents(){
handleFullScreenEvents() {
document.addEventListener('fullscreenchange', (e) => {
const fullscreenElement = document.fullscreenElement;
if (!fullscreenElement) {