diff options
author | David Baker <dbkr@matrix.org> | 2014-09-19 16:18:15 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-19 16:18:15 +0100 |
commit | da8b5a53671911bd158865f7af4b04b3b0168dfa (patch) | |
tree | 78ada3dfcabcdcae8dc0e46445c1bfed7dcb63ab /webclient/index.html | |
parent | add unprefixed filter css as well (diff) | |
download | synapse-da8b5a53671911bd158865f7af4b04b3b0168dfa.tar.xz |
First working version of UI chrome for video calls.
Diffstat (limited to 'webclient/index.html')
-rw-r--r-- | webclient/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webclient/index.html b/webclient/index.html index 78a68753d4..77686abcc2 100644 --- a/webclient/index.html +++ b/webclient/index.html @@ -47,8 +47,9 @@ <body> <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')"></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> </div> |