diff options
author | David Baker <dbkr@matrix.org> | 2014-11-07 17:56:28 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-07 17:56:28 +0000 |
commit | 7d15452c3037b887a85d0b65916de90b2d2c4573 (patch) | |
tree | 244d8c28c07ea4043e6e4dd1478d8b25722a663c /syweb/webclient/index.html | |
parent | Detect call type by examining the SDP always rather than just in Firefox as i... (diff) | |
download | synapse-7d15452c3037b887a85d0b65916de90b2d2c4573.tar.xz |
Various fixes to try & make openwebrtc safari extension work (still doesn't work).
Diffstat (limited to 'syweb/webclient/index.html')
-rw-r--r-- | syweb/webclient/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syweb/webclient/index.html b/syweb/webclient/index.html index 992e8d3377..45be6c274b 100644 --- a/syweb/webclient/index.html +++ b/syweb/webclient/index.html @@ -53,8 +53,8 @@ <div id="videoBackground" ng-class="videoMode"> <div id="videoContainer" ng-class="videoMode"> <div id="videoContainerPadding"></div> - <video id="localVideo" ng-class="[videoMode, currentCall.state]" ng-show="currentCall && currentCall.type == 'video' && (currentCall.state == 'connected' || currentCall.state == 'connecting' || currentCall.state == 'invite_sent' || currentCall.state == 'ended')"></video> - <video id="remoteVideo" ng-class="[videoMode, currentCall.state]" ng-show="currentCall && currentCall.type == 'video' && (currentCall.state == 'connected' || (currentCall.state == 'ended' && currentCall.didConnect))"></video> + <div ng-class="[videoMode, currentCall.state]" ng-show="currentCall && currentCall.type == 'video' && (currentCall.state == 'connected' || currentCall.state == 'connecting' || currentCall.state == 'invite_sent' || currentCall.state == 'ended')"><video id="localVideo"></video></div> + <div ng-class="[videoMode, currentCall.state]" ng-show="currentCall && currentCall.type == 'video' && (currentCall.state == 'connected' || (currentCall.state == 'ended' && currentCall.didConnect))"><video id="remoteVideo"></video></div> </div> </div> |