diff options
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> |