diff options
author | David Baker <dbkr@matrix.org> | 2014-09-19 18:22:14 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-19 18:22:14 +0100 |
commit | 648fd2a622353ecdb94eb0244c4dc8b6676d8a89 (patch) | |
tree | 27172581b2644f0f76315a6d07cf5d4e24843873 /webclient/index.html | |
parent | Move video background element up as it was causing the page to scroll. (diff) | |
download | synapse-648fd2a622353ecdb94eb0244c4dc8b6676d8a89.tar.xz |
Notify a callee that their browser doesn't support VoIP too.
SYWEB-14 #resolved
Diffstat (limited to 'webclient/index.html')
-rw-r--r-- | webclient/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/index.html b/webclient/index.html index 47d3ebf657..39174d679d 100644 --- a/webclient/index.html +++ b/webclient/index.html @@ -79,7 +79,7 @@ </span> </div> <span ng-show="currentCall.state == 'ringing'"> - <button ng-click="answerCall()">Answer {{ currentCall.type }} call</button> + <button ng-click="answerCall()" ng-disabled="!isWebRTCSupported" title="{{isWebRTCSupported ? '' : 'Your browser does not support VoIP' }}">Answer {{ currentCall.type }} call</button> <button ng-click="hangupCall()">Reject</button> </span> <button ng-click="hangupCall()" ng-show="currentCall && currentCall.state != 'ringing' && currentCall.state != 'ended' && currentCall.state != 'fledgling'">Hang up</button> |