load()
load(props?: InstanceProperties)
InstanceProperties signature
Sample code -> it will put a 5px red border around the iframe (using the html style attribute):
const initOptions = {team: 'myTeamNameHere', room: 'myRoomNameHere'};
const sambaFrame = DigitalSambaEmbedded.createControl(initOptions);
//..................................................................
//Some time later load the room
sambaFrame.load({
frameAttributes: {style: "border: 5px solid red"},
reportErrors: false
});Last updated