I have been working on Web Meeting SDK Component View for webinars and noticed that
when a participant share his screen, entire view resizes.
I have set the height 411px by ‘client.init’ function’s video viewSizes property
like this:
client.init({
debug: true,
zoomAppRoot: meetingSDKElement,
customize: {
video: {
isResizable: false,
viewSizes: {
default: {
width: 737,
height: 411
}
}
}
}
})
The view resize to the size I specified on load, but when a participant share his screen,
the view enlarges vertically and I do not know how to resize it to 411px programmatically.
Does anyone know if there is a JS function or property to resize the view with shared screen?