BlueJeans is being sunset. Please refer to more details

Hide Other Join Options


Applicable for  Desktop

UI props provides the object structure for the custom options supported for the UI modification. hideOtherJoinOptions method is used to hide or show to the user by joining the meeting with other options or by using phone. 

If you do not want your client hide the join options in their experience, then set hideOtherJoinOptions as been true. 

By default, hideOtherJoinOptions has been set as false, use the following command to hide the other join options.

BJNEmbedSDK.joinMeeting({
    "meetingInfo": {
        "meetingId": "Meeting ID",    
        "name": "Your Name",
        "passcode": "Passcode",  
    },
    "iFrameProps": {
        "width": "",
        "height": ""
    },
    "uiProps": {
        "hideOtherJoinOptions" : true
    }
})

The image above demonstrates the location of the default other join options (left) and after hiding other join options (right).