[mirotalksfu] - del comment

هذا الالتزام موجود في:
Miroslav Pejic
2022-08-19 17:41:06 +02:00
الأصل 77be7494bf
التزام be82137e62
2 ملفات معدلة مع 3 إضافات و2 حذوفات

عرض الملف

@@ -1214,8 +1214,6 @@ class RoomClient {
pm.appendChild(pb);
BUTTONS.consumerVideo.ejectButton && vb.appendChild(ko);
BUTTONS.consumerVideo.audioVolumeInput && vb.appendChild(pv);
// BUTTONS.consumerVideo.muteAudioButton && vb.appendChild(au);
// BUTTONS.consumerVideo.muteVideoButton && vb.appendChild(cm);
vb.appendChild(au);
vb.appendChild(cm);
BUTTONS.consumerVideo.sendVideoButton && vb.appendChild(sv);

عرض الملف

@@ -64,6 +64,7 @@ function handleRules(isPresenter) {
BUTTONS.consumerVideo.ejectButton = false;
BUTTONS.consumerVideo.muteAudioButton = false;
BUTTONS.consumerVideo.muteVideoButton = false;
//...
} else {
BUTTONS.settings.lockRoomButton = !isRoomLocked;
BUTTONS.settings.unlockRoomButton = isRoomLocked;
@@ -72,6 +73,7 @@ function handleRules(isPresenter) {
BUTTONS.consumerVideo.ejectButton = true;
BUTTONS.consumerVideo.muteAudioButton = true;
BUTTONS.consumerVideo.muteVideoButton = true;
//...
}
handleNotPresenterButtons();
}
@@ -80,4 +82,5 @@ function handleNotPresenterButtons() {
// main. settings.
BUTTONS.settings.lockRoomButton ? show(lockRoomButton) : hide(lockRoomButton);
BUTTONS.settings.unlockRoomButton ? show(unlockRoomButton) : hide(unlockRoomButton);
//...
}