[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2024-11-03 05:24:20 +01:00
الأصل 92aea0a545
التزام d302a04e38
2 ملفات معدلة مع 12 إضافات و10 حذوفات

عرض الملف

@@ -1801,12 +1801,12 @@ class RoomClient {
// HELPERS
// ####################################################
createButton = (id, className) => {
createButton(id, className) {
const button = document.createElement('button');
button.id = id;
button.className = className;
return button;
};
}
// ####################################################
// PRODUCER
@@ -2275,13 +2275,6 @@ class RoomClient {
eVc = document.createElement('div');
eVc.className = 'expand-video-content';
pv = document.createElement('input');
pv.id = remotePeerId + '___pVolume';
pv.type = 'range';
pv.min = 0;
pv.max = 100;
pv.value = 100;
pip = this.createButton(id + '__pictureInPicture', html.pip);
mv = this.createButton(id + '__videoMirror', html.mirror);
fs = this.createButton(id + '__fullScreen', html.fullScreen);
@@ -2327,6 +2320,13 @@ class RoomClient {
peerNameContainer.appendChild(peerNameSpan);
pv = document.createElement('input');
pv.id = remotePeerId + '___pVolume';
pv.type = 'range';
pv.min = 0;
pv.max = 100;
pv.value = 100;
BUTTONS.consumerVideo.audioVolumeInput && peerNameContainer.appendChild(pv);
peerNameHeader.appendChild(peerNameContainer);
@@ -3545,7 +3545,7 @@ class RoomClient {
rc.sound('open');
show(videoBar);
animateCSS(videoBar, 'fadeInDown');
if (participantsCount > 1) videoPlayer.style.border = '0.1px solid #2a7aef';
if (participantsCount > 1) videoPlayer.style.border = 'var(--videoBar-active)';
} else {
animateCSS(videoBar, 'fadeOutUp').then((msg) => {
hide(videoBar);