| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | 
							- /**
 -  * Moderate connection plugin.
 -  */
 - Strophe.addConnectionPlugin('moderate', {
 -     connection: null,
 -     roomjid: null,
 -     myroomjid: null,
 -     members: {},
 -     list_members: [], // so we can elect a new focus
 -     presMap: {},
 -     preziMap: {},
 -     joined: false,
 -     isOwner: false,
 -     init: function (conn) {
 -         this.connection = conn;
 - 
 -         this.connection.addHandler( this.onMute.bind(this),
 -                                     'http://jitsi.org/jitmeet/audio',
 -                                     'iq',
 -                                     'set',
 -                                     null,
 -                                     null);
 -     },
 -     setMute: function(jid, mute) {
 -         var iq = $iq({to: jid, type: 'set'})
 -                     .c('mute', {xmlns: 'http://jitsi.org/jitmeet/audio'})
 -                     .t(mute.toString())
 -                     .up();
 - 
 -         this.connection.sendIQ(
 -                 iq,
 -                 function (result) {
 -                     console.log('set mute', result);
 -                 },
 -                 function (error) {
 -                     console.log('set mute error', error);
 -                     messageHandler.openReportDialog(null, 'Failed to mute ' +
 -                         $("#participant_" + jid).find(".displayname").text() ||
 -                         "participant" + '.', error);
 -                 });
 -     },
 -     onMute: function(iq) {
 -         var mute = $(iq).find('mute');
 -         if (mute.length) {
 -             toggleAudio();
 -         }
 -         return true;
 -     },
 -     eject: function(jid) {
 -         connection.jingle.terminateRemoteByJid(jid, 'kick');
 -         connection.emuc.kick(jid);
 -     }
 - });
 
 
  |