diff options
author | David Baker <dbkr@matrix.org> | 2014-11-13 14:34:03 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-13 14:34:03 +0000 |
commit | f842bca471ec19fb0fcf8e71536b113983896140 (patch) | |
tree | 566343999646fb997aa8fad2b05b8eb5410b943f /syweb/webclient/index.html | |
parent | This gives just enough space for the vertical scrollbar to be shown without a... (diff) | |
download | synapse-f842bca471ec19fb0fcf8e71536b113983896140.tar.xz |
Kill ng-animate with fire because it's terrible (was causing the page to be very sluggish). Do the call icons in pure CSS3 and use one less image to boot (in some browsers the phone icon will be the wrong browser but they can deal).
Diffstat (limited to '')
-rw-r--r-- | syweb/webclient/index.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/syweb/webclient/index.html b/syweb/webclient/index.html index 4bca320e77..22b6d50ca0 100644 --- a/syweb/webclient/index.html +++ b/syweb/webclient/index.html @@ -16,7 +16,6 @@ <script src="js/angular.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 src="js/jquery.peity.min.js"></script> <script src="js/angular-peity.js"></script> <script type='text/javascript' src="js/ui-bootstrap-tpls-0.11.2.js"></script> @@ -66,8 +65,7 @@ <div id="headerContent" ng-hide="'/login' == location || '/register' == location"> <div id="callBar" ng-show="currentCall"> <img id="callPeerImage" ng-show="currentCall.userProfile.avatar_url" ngSrc="{{ currentCall.userProfile.avatar_url }}" /> - <img class="callIcon" src="img/green_phone.png" ng-show="currentCall.state != 'ended'" /> - <img class="callIcon" id="callEndedIcon" src="img/red_phone.png" ng-show="currentCall.state == 'ended'" /> + <img class="callIcon" src="img/green_phone.png" ng-show="!!currentCall" ng-class="currentCall.state" /> <div id="callPeerNameAndState"> <span id="callPeerName">{{ currentCall.userProfile.displayname }}</span> <br /> |