From 2b207f9cd373b75db1b170c60b8f408714377186 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Tue, 19 Dec 2023 10:07:50 +0100 Subject: [PATCH] [mirotalk] - #202 - fix typo --- public/js/client.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/js/client.js b/public/js/client.js index 057891bd..af11de13 100644 --- a/public/js/client.js +++ b/public/js/client.js @@ -7349,7 +7349,7 @@ function handlePeerAudioBtn(peer_id) { if (peerAudioBtn.className === className.audioOn) { isPresenter ? disablePeer(peer_id, 'audio') - : msgPopup('warning', 'Only the presenter can mute the participants', 'top-end', 4000); + : msgPopup('warning', 'Only the presenter can mute participants', 'top-end', 4000); } }; } @@ -7365,7 +7365,7 @@ function handlePeerVideoBtn(peer_id) { if (peerVideoBtn.className === className.videoOn) { isPresenter ? disablePeer(peer_id, 'video') - : msgPopup('warning', 'Only the presenter can hide the participants', 'top-end', 4000); + : msgPopup('warning', 'Only the presenter can hide participants', 'top-end', 4000); } }; } @@ -9131,7 +9131,7 @@ function handlePeerKickOutBtn(peer_id) { peerKickOutBtn.addEventListener('click', (e) => { isPresenter ? kickOut(peer_id) - : msgPopup('warning', 'Only the presenter can eject the participants', 'top-end', 4000); + : msgPopup('warning', 'Only the presenter can eject participants', 'top-end', 4000); }); }