Can switch from screen to webcam

This commit is contained in:
Pierre HUBERT 2020-04-13 16:54:07 +02:00
parent ce89facd2d
commit 3fe8b2f438

View File

@ -179,6 +179,27 @@ class CallWindow extends CustomEvents {
}
},
// Share screen button
{
icon: "fa-tv",
text: "Share screen",
needVideo: true,
onclick: () => {
this.startStreaming(true, true)
}
},
// Share camera button
{
icon: "fa-video-camera",
text: "Share webcam",
needVideo: true,
onclick: () => {
this.startStreaming(true, false)
}
},
]
//Add buttons