BlueJeans is being sunset. Please refer to more details

Hide BlueJeans Brand Footer


Applicable for  Desktop

BlueJeans web experience renders a footer (in black color) that includes BlueJeans branding at the bottom of the screen. The Web Embed SDK provides the capability to hide footer while integrating the web application.

If desired, the Web Embed SDK allows you to hide footer within the meeting experience. If this is done, the participants will not notice “footer” within the meeting. To do this you can set hideFooter flag with true. By default, the hideFooter has been set to "false".

Use the following code snippet to hide BlueJeans brand footer.

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

The image above demonstrates an example of the default brand footer (left) and after hiding brand footer (right).