[mirotalksfu] - add collaborative powerful rich text editor

هذا الالتزام موجود في:
Miroslav Pejic
2024-08-11 23:56:10 +02:00
الأصل 8ef849a80e
التزام 8ab09c9ded
10 ملفات معدلة مع 439 إضافات و8 حذوفات

عرض الملف

@@ -30,6 +30,8 @@ const commands = {
chatOff: 'close the chat',
pollOn: 'open the poll',
pollOff: 'close the poll',
editorOn: 'open the editor',
editorOff: 'close the editor',
toggleTr: 'toggle transcription',
whiteboardOn: 'open the whiteboard',
whiteboardOff: 'close the whiteboard',
@@ -197,6 +199,14 @@ function execVoiceCommands(transcript) {
printCommand(commands.pollOff);
pollCloseBtn.click();
break;
case commands.editorOn:
printCommand(commands.editorOn);
editorButton.click();
break;
case commands.editorOff:
printCommand(commands.editorOff);
editorCloseBtn.click();
break;
case commands.chatSend:
printCommand(commands.chatSend);
chatSendButton.click();