Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
12345678910111213141516 |
- /**
- * This objets holds all created transcriberHolders so that they can be
- * accessed through the JitsiMeetJS object.
- *
- * This is probably temporary until there is a better way to expose the
- * Transcriber in a conference
- */
- const transcriberHolder = {
- transcribers: [],
-
- add(transcriber) {
- transcriberHolder.transcribers.push(transcriber);
- }
- };
-
- module.exports = transcriberHolder;
|