Hide the local video when in a conf call

pull/160/head
Kegan Dougal 2015-09-15 15:49:33 +01:00
parent 370310bf82
commit 2b65b4c2dc
1 changed files with 5 additions and 1 deletions

View File

@ -73,7 +73,11 @@ module.exports = {
call.setRemoteVideoElement(this.getVideoView().getRemoteVideoElement());
}
if (call && call.type === "video" && call.state !== 'ended') {
this.getVideoView().getLocalVideoElement().style.display = "initial";
// if this call is a conf call, don't display local video as the
// conference will have us in it
this.getVideoView().getLocalVideoElement().style.display = (
call.confUserId ? "none" : "initial"
);
this.getVideoView().getRemoteVideoElement().style.display = "initial";
}
else {