Minimal CSS bodge so the video actually dies when the call ends.

pull/1/head
Kegan Dougal 2015-07-16 11:21:43 +01:00
parent 7ffd97b5dc
commit eedd437ca7
1 changed files with 6 additions and 0 deletions

View File

@ -50,9 +50,15 @@ module.exports = {
}
var call = CallHandler.getCall(payload.room_id);
if (call) {
this.getVideoView().getLocalVideoElement().style.display = "initial";
this.getVideoView().getRemoteVideoElement().style.display = "initial";
call.setLocalVideoElement(this.getVideoView().getLocalVideoElement());
call.setRemoteVideoElement(this.getVideoView().getRemoteVideoElement());
}
else {
this.getVideoView().getLocalVideoElement().style.display = "none";
this.getVideoView().getRemoteVideoElement().style.display = "none";
}
}
};