diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-10 18:35:05 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-10 18:35:05 +0200 |
commit | 44998ca4508c9ed13e563383f1209e7be6ee2e56 (patch) | |
tree | 90870576ecb61d488efb0d9c9ec7697d46ab98a1 /webclient/index.html | |
parent | Show echoed emote with transparency (diff) | |
parent | Animation on call end icon. (diff) | |
download | synapse-44998ca4508c9ed13e563383f1209e7be6ee2e56.tar.xz |
Merge remote-tracking branch 'origin/develop' into webclient_initialSync
Diffstat (limited to 'webclient/index.html')
-rw-r--r-- | webclient/index.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webclient/index.html b/webclient/index.html index 3b531027e1..dd2393722c 100644 --- a/webclient/index.html +++ b/webclient/index.html @@ -15,6 +15,7 @@ <script src="js/angular.min.js"></script> <script src="js/angular-route.min.js"></script> <script src="js/angular-sanitize.min.js"></script> + <script src="js/angular-animate.min.js"></script> <script type='text/javascript' src='js/ng-infinite-scroll-matrix.js'></script> <script src="app.js"></script> <script src="config.js"></script> @@ -56,6 +57,7 @@ <br /> <span id="callState"> <span ng-show="currentCall.state == 'invite_sent'">Calling...</span> + <span ng-show="currentCall.state == 'ringing'">Incoming Call</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' && !currentCall.didConnect && currentCall.direction == 'outbound' && currentCall.hangupParty == 'remote'">Call Rejected</span> |