You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|