summary refs log tree commit diff
path: root/webclient/index.html
diff options
context:
space:
mode:
authorDavid Baker <dbkr@matrix.org>2014-09-19 16:18:15 +0100
committerDavid Baker <dbkr@matrix.org>2014-09-19 16:18:15 +0100
commitda8b5a53671911bd158865f7af4b04b3b0168dfa (patch)
tree78ada3dfcabcdcae8dc0e46445c1bfed7dcb63ab /webclient/index.html
parentadd unprefixed filter css as well (diff)
downloadsynapse-da8b5a53671911bd158865f7af4b04b3b0168dfa.tar.xz
First working version of UI chrome for video calls.
Diffstat (limited to 'webclient/index.html')
-rw-r--r--webclient/index.html3
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>