mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 21:22:00 +02:00
Resolve DEV-2816 while I'm at it - allow users to switch between screens
This commit is contained in:
parent
d4b50523c2
commit
5eae6711e6
1 changed files with 7 additions and 0 deletions
|
@ -190,6 +190,10 @@ function stopSharing() {
|
|||
|
||||
// Callback to start publishing after we have setup the chromium stream
|
||||
function gotStream(stream) {
|
||||
if (localStream) {
|
||||
stopSharing();
|
||||
}
|
||||
|
||||
localStream = stream;
|
||||
startTokboxPublisher(localStream);
|
||||
|
||||
|
@ -208,6 +212,9 @@ function onAccessApproved(desktop_id) {
|
|||
console.log('Desktop Capture access rejected.');
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
document.getElementById('screenshare').style.visibility = "block";
|
||||
desktopSharing = true;
|
||||
navigator.webkitGetUserMedia({
|
||||
|
|
Loading…
Reference in a new issue