[mirotalksfu] - improve recording

هذا الالتزام موجود في:
Miroslav Pejic
2023-10-29 12:58:51 +01:00
الأصل 4cf4abcdd0
التزام 4fd18611da
3 ملفات معدلة مع 13 إضافات و1 حذوفات

عرض الملف

@@ -172,6 +172,7 @@ function initClient() {
setTippy('switchShare', "Show 'Share Room' popup on join", 'right');
setTippy('roomId', 'Room name (click to copy)', 'right');
setTippy('sessionTime', 'Session time', 'right');
setTippy('recImage', 'Toggle recording', 'right');
setTippy('roomRecording', 'Only the host (presenter) has the capability to record the meeting', 'bottom');
setTippy('whiteboardGhostButton', 'Toggle transparent background', 'bottom');
setTippy('wbBackgroundColorEl', 'Background color', 'bottom');
@@ -1271,6 +1272,9 @@ function handleButtons() {
fullScreenButton.onclick = () => {
rc.toggleFullScreen();
};
recImage.onclick = () => {
isRecording ? stopRecButton.click() : startRecButton.click();
};
startRecButton.onclick = () => {
rc.startRecording();
};