/** * 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 */ var transcriberHolder = { transcribers : [], add : function(transcriber){ transcriberHolder.transcribers.push(transcriber); } }; module.exports = transcriberHolder;