 Menu
      Menu 
      
    Check if new participant enable camera/mic and trying to join your room
This event is fired as soon as callee says "I am ready for offer. I enabled camera. Please create offer and share with me".
connection.onReadyForOffer = function(remoteUserId, userPreferences) {
    // if OfferToReceiveAudio/OfferToReceiveVideo should be enabled for specific users
    userPreferences.localPeerSdpConstraints.OfferToReceiveAudio = true;
    userPreferences.localPeerSdpConstraints.OfferToReceiveVideo = true;
    userPreferences.dontAttachStream = false; // according to situation
    userPreferences.dontGetRemoteStream = false;  // according to situation
    // below line must be included. Above all lines are optional.
    connection.multiPeersHandler.createNewPeer(remoteUserId, userPreferences);
};