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.

transcriberHolder.js 408B

12345678910111213141516
  1. /**
  2. * This objets holds all created transcriberHolders so that they can be
  3. * accessed through the JitsiMeetJS object.
  4. *
  5. * This is probably temporary until there is a better way to expose the
  6. * Transcriber in a conference
  7. */
  8. const transcriberHolder = {
  9. transcribers: [],
  10. add(transcriber) {
  11. transcriberHolder.transcribers.push(transcriber);
  12. }
  13. };
  14. module.exports = transcriberHolder;