選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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;