| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | 
							- /* global connection, Strophe, updateLargeVideo, focusedVideoSrc*/
 - /**
 -  * Callback triggered by PeerConnection when new data channel is opened
 -  * on the bridge.
 -  * @param event the event info object.
 -  */
 - function onDataChannel(event)
 - {
 -     var dataChannel = event.channel;
 - 
 -     dataChannel.onopen = function ()
 -     {
 -         console.info("Data channel opened by the bridge !!!", dataChannel);
 - 
 -         // Sends String message to the bridge
 -         dataChannel.send("Hello bridge!");
 - 
 -         // Sends 12 bytes binary message to the bridge
 -         dataChannel.send(new ArrayBuffer(12));
 -     };
 - 
 -     dataChannel.onerror = function (error)
 -     {
 -         console.error("Data Channel Error:", error, dataChannel);
 -     };
 - 
 -     dataChannel.onmessage = function (event)
 -     {
 -         var msgData = event.data;
 -         console.info("Got Data Channel Message:", msgData, dataChannel);
 - 
 -         // Active speaker event
 -         if (msgData.indexOf('activeSpeaker') === 0 && !focusedVideoSrc)
 -         {
 -             // Endpoint ID from the bridge
 -             var endpointId = msgData.split(":")[1];
 -             console.info("New active speaker: " + endpointId);
 - 
 -             var container  = document.getElementById(
 -                 'participant_' + endpointId);
 -             // Check if local video
 -             if (!container)
 -             {
 -                 if (endpointId ===
 -                         Strophe.getResourceFromJid(connection.emuc.myroomjid))
 -                 {
 -                     container = document.getElementById('localVideoContainer');
 -                 }
 -             }
 -             if (container)
 -             {
 -                 var video = container.getElementsByTagName("video");
 -                 if (video.length)
 -                 {
 -                     updateLargeVideo(video[0].src);
 -                 }
 -             }
 -         }
 -     };
 - 
 -     dataChannel.onclose = function ()
 -     {
 -         console.info("The Data Channel closed", dataChannel);
 -     };
 - }
 - 
 - /**
 -  * Binds "ondatachannel" event listener to given PeerConnection instance.
 -  * @param peerConnection WebRTC peer connection instance.
 -  */
 - function bindDataChannelListener(peerConnection)
 - {
 -     peerConnection.ondatachannel = onDataChannel;
 - 
 -     // Sample code for opening new data channel from Jitsi Meet to the bridge.
 -     // Although it's not a requirement to open separate channels from both bridge
 -     // and peer as single channel can be used for sending and receiving data.
 -     // So either channel opened by the bridge or the one opened here is enough
 -     // for communication with the bridge.
 -     /*var dataChannelOptions =
 -     {
 -         reliable: true
 -     };
 -     var dataChannel
 -        = peerConnection.createDataChannel("myChannel", dataChannelOptions);
 - 
 -     // Can be used only when is in open state
 -     dataChannel.onopen = function ()
 -     {
 -         dataChannel.send("My channel !!!");
 -     };
 -     dataChannel.onmessage = function (event)
 -     {
 -         var msgData = event.data;
 -         console.info("Got My Data Channel Message:", msgData, dataChannel);
 -     };*/
 - }
 
 
  |