BlueJeans is being sunset. Please refer to more details

Hide Signin Button


Applicable for  Desktop

BlueJeans meetings shows sign-in button at the top left right corner in the haircheck screen. Signin button helps your user to sign in to BlueJeans account. If you do not want your client to signin to BlueJeans account, you can hide the Signin option.

hideSignInButtonis a boolean property, set hideSignInButton flag with false, you can hide Signin option within the meeting environment.

By default "hideSignInButton" has been set as "true". Use the following code snippet to hide the signin button.

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

The image above demonstrates the location of the default Signin button (left) and after Signin button (right).