[mirotalksfu] - make more customizable

هذا الالتزام موجود في:
Miroslav Pejic
2022-10-21 09:18:38 +02:00
الأصل a6c6476964
التزام 8b951690ad
2 ملفات معدلة مع 22 إضافات و7 حذوفات

عرض الملف

@@ -645,17 +645,24 @@ function roomIsReady() {
setTheme('dark');
BUTTONS.main.exitButton && show(exitButton);
BUTTONS.main.shareButton && show(shareButton);
show(startRecButton);
if (BUTTONS.settings.tabRecording) {
show(startRecButton);
} else {
hide(tabRecordingBtn);
}
BUTTONS.main.chatButton && show(chatButton);
!BUTTONS.chat.chatSaveButton && hide(chatSaveButton);
BUTTONS.chat.chatEmojiButton && show(chatEmojiButton);
BUTTONS.chat.chatMarkdownButton && show(chatMarkdownButton);
BUTTONS.chat.chatShareFileButton && show(chatShareFileButton);
if (isWebkitSpeechRecognitionSupported && BUTTONS.chat.chatSpeechStartButton) {
show(chatSpeechStartButton);
} else {
BUTTONS.chat.chatSpeechStartButton = false;
}
show(chatCleanTextButton);
show(chatPasteButton);
show(chatSendButton);
show(chatEmojiButton);
show(chatMarkdownButton);
show(chatShareFileButton);
if (isWebkitSpeechRecognitionSupported) {
show(chatSpeechStartButton);
}
if (DetectRTC.isMobileDevice && BUTTONS.main.swapCameraButton) {
show(swapCameraButton);
setChatSize();

عرض الملف

@@ -26,6 +26,7 @@ const BUTTONS = {
unlockRoomButton: true,
lobbyButton: true,
participantsButton: true,
tabRecording: true,
},
producerVideo: {
fullScreenButton: true,
@@ -51,6 +52,13 @@ const BUTTONS = {
audioVolumeInput: true,
ejectButton: true,
},
chat: {
chatSaveButton: true,
chatEmojiButton: true,
chatMarkdownButton: true,
chatShareFileButton: true,
chatSpeechStartButton: true,
},
//...
};