diff options
author | David Baker <dbkr@matrix.org> | 2014-09-17 16:26:35 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-17 16:26:35 +0100 |
commit | 1fb2c831e824d89aa849fc2aee45f5f1162842b2 (patch) | |
tree | 124f735faff26a592517ce88aa99bcf1f9cd712a /webclient/room/room.html | |
parent | Time out calls from both ends properly. (diff) | |
download | synapse-1fb2c831e824d89aa849fc2aee45f5f1162842b2.tar.xz |
Video calling (in a tiny box at the moment)
Diffstat (limited to 'webclient/room/room.html')
-rw-r--r-- | webclient/room/room.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webclient/room/room.html b/webclient/room/room.html index 9d617eadd8..94077576a2 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -173,6 +173,7 @@ </span> <button ng-click="leaveRoom()" ng-disabled="state.permission_denied">Leave</button> <button ng-click="startVoiceCall()" ng-show="(currentCall == undefined || currentCall.state == 'ended') && memberCount() == 2" ng-disabled="state.permission_denied">Voice Call</button> + <button ng-click="startVideoCall()" ng-show="(currentCall == undefined || currentCall.state == 'ended') && memberCount() == 2" ng-disabled="state.permission_denied">Video Call</button> </div> {{ feedback }} |