BlueJeans is being sunset. Please refer to more details

iFrame Container


BlueJeans Web Embed SDK gives a provision to the developers to customize the screen container by providing the height and width in the iFrameProps. You can be able to define parameters of a container by providing the value either percentage or the pixels, which renders meetings embed experience. 

Parameter

  • Width (Default 100%, Example : 100% (or) 300px)
  • Height (Default 100%, Example : 100% (or) 300px)
  • .iframeHolder (Default: Attach to the body, Example : #iframeContainer (or) .iframeContainer)
BJNEmbedSDK.joinMeeting({
     "meetingInfo": {
           "meetingId": "Meeting ID",    
           "name": "Your Name",
           "passcode": "Passcode",  
    },
    "iFrameProps": {
        "width": "50%",
        "height": "50%",
        "selectorId": ".iframeHolder"
    },
    "uiProps": {
    }
})

The image above demonstrates an example of the default iFrame container (left) and custom iFrame container (right)