fix peer-list

This commit is contained in:
Gustavo Maximiliano Cortez 2014-09-02 11:02:59 -03:00
parent 0cb465095a
commit 7b316939f2
2 changed files with 3 additions and 5 deletions

View File

@ -1,8 +1,7 @@
<div ng-controller="CopayersController"> <div ng-controller="CopayersController">
<div class="copay-box" ng-repeat="copayer in copayersList()"> <div class="copay-box" ng-repeat="copayer in copayersList()">
<img <img
class="br100" class="br100 online"
ng-class="online"
src="./img/satoshi.gif" src="./img/satoshi.gif"
alt="{{copayer.peerId}}" alt="{{copayer.peerId}}"
width="70"> width="70">

View File

@ -9,13 +9,12 @@
<div class="copay-box-small" ng-repeat="copayer in copayers"> <div class="copay-box-small" ng-repeat="copayer in copayers">
<img <img
class="br100" class="br100 online"
ng-class="online"
src="./img/satoshi.gif" src="./img/satoshi.gif"
alt="{{copayer.peerId}}" alt="{{copayer.peerId}}"
width="30"> width="30">
<div class="ellipsis"> <div class="ellipsis" tooltip-placement="top" tooltip="{{copayer.nick}}">
<small class="text-gray" ng-show="copayer.index == 0">Me</small> <small class="text-gray" ng-show="copayer.index == 0">Me</small>
<small class="text-gray" ng-show="copayer.index > 0">{{copayer.nick}}</small> <small class="text-gray" ng-show="copayer.index > 0">{{copayer.nick}}</small>
</div> </div>