Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

transcriberHolder.js 409B

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;