[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2022-01-03 14:40:12 +01:00
الأصل 31d8bac1a0
التزام 5cb0fa3e72

عرض الملف

@@ -1386,10 +1386,7 @@ class RoomClient {
this.isVideoOnFullScreen = this.isVideoOnFullScreen ? false : true;
});
videoPlayer.addEventListener('click', () => {
if (
(this.isMobileDevice && this.isVideoOnFullScreen) ||
(!this.isMobileDevice && !this.isVideoOnFullScreen)
) {
if ((this.isMobileDevice && this.isVideoOnFullScreen) || !this.isMobileDevice) {
videoPlayer.style.pointerEvents = this.isVideoOnFullScreen ? 'auto' : 'none';
this.toggleFullScreen(videoPlayer);
this.isVideoOnFullScreen = this.isVideoOnFullScreen ? false : true;