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.

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;