diff options
author | David Baker <dbkr@matrix.org> | 2014-08-29 18:11:20 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-08-29 18:11:20 +0100 |
commit | 8c36179d35f6353270a761dbdc8161ca94ff54a2 (patch) | |
tree | b1684b119938cd3c0d2bc6a863c96e4b3f2945d1 /webclient/room/room.html | |
parent | Version bump for bug fix. (diff) | |
download | synapse-8c36179d35f6353270a761dbdc8161ca94ff54a2.tar.xz |
Give basic feedback on the state of VoIP calls in the UI (manually adding to master having added to develop)
Diffstat (limited to 'webclient/room/room.html')
-rw-r--r-- | webclient/room/room.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webclient/room/room.html b/webclient/room/room.html index a3514c3a91..262b5df82e 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -105,6 +105,10 @@ <button ng-click="hangupCall()">Reject</button> </div> <button ng-click="hangupCall()" ng-show="currentCall && currentCall.state != 'ringing'">Hang up</button> + <span ng-show="currentCall.state == 'invite_sent'">Calling...</span> + <span ng-show="currentCall.state == 'connecting'">Call Connecting...</span> + <span ng-show="currentCall.state == 'connected'">Call Connected</span> + <span ng-show="currentCall.state == 'ended'">Call Ended</span> <span style="display: none; ">{{ currentCall.state }}</span> </div> |