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 class="copay-box" ng-repeat="copayer in copayersList()">
<img
class="br100"
ng-class="online"
class="br100 online"
src="./img/satoshi.gif"
alt="{{copayer.peerId}}"
width="70">

View File

@ -9,13 +9,12 @@
<div class="copay-box-small" ng-repeat="copayer in copayers">
<img
class="br100"
ng-class="online"
class="br100 online"
src="./img/satoshi.gif"
alt="{{copayer.peerId}}"
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">{{copayer.nick}}</small>
</div>