2014-10-09 16:30:47 -03:00
|
|
|
<div ng-controller="CopayersController"
|
|
|
|
|
class="copayers"
|
|
|
|
|
ng-mouseenter="showCopayers=1"
|
|
|
|
|
ng-mouseleave="showCopayers=0">
|
2014-09-02 10:51:09 -03:00
|
|
|
<h3>
|
|
|
|
|
<i class="fi-torsos-all size-21 m20r"></i>
|
2014-09-05 16:58:28 -03:00
|
|
|
<span translate>Copayers</span>
|
2014-09-02 10:51:09 -03:00
|
|
|
<small class="m15l">
|
2014-09-05 16:58:28 -03:00
|
|
|
{{$root.wallet.requiredCopayers}} <span translate>of</span> {{$root.wallet.totalCopayers}}
|
2014-09-02 10:51:09 -03:00
|
|
|
</small>
|
|
|
|
|
</h3>
|
2014-07-18 18:38:28 -03:00
|
|
|
|
2014-10-09 16:30:47 -03:00
|
|
|
<div class="copay-box-small" ng-repeat="copayer in copayersList()"
|
|
|
|
|
ng-show="showCopayers">
|
2014-09-02 10:51:09 -03:00
|
|
|
<img
|
2014-09-02 11:02:59 -03:00
|
|
|
class="br100 online"
|
2014-09-02 10:51:09 -03:00
|
|
|
src="./img/satoshi.gif"
|
|
|
|
|
alt="{{copayer.peerId}}"
|
|
|
|
|
width="30">
|
2014-07-18 18:38:28 -03:00
|
|
|
|
2014-10-01 12:31:08 -03:00
|
|
|
<div tooltip-placement="top" tooltip="{{copayer.nick}}">
|
|
|
|
|
<small class="text-gray db" ng-show="copayer.index == 0">{{'Me'|translate}}</small>
|
|
|
|
|
<small class="text-gray ellipsis" ng-show="copayer.index > 0">{{copayer.nick}}</small>
|
2014-09-02 10:51:09 -03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-07-18 18:38:28 -03:00
|
|
|
</div>
|