Merge pull request #61 from JDonadio/fix/wallet-incomplete

Fix incomplete wallet process
This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-06 15:19:30 -03:00 committed by GitHub
commit da4945cc15
8 changed files with 96 additions and 141 deletions

View file

@ -1,10 +1,8 @@
<ul class="no-bullet m0">
<li class="" ng-repeat="copayer in index.copayers">
<span class="size-12" ng-show="copayer.id == index.copayerId">
<i class="fi-check m5r"></i> {{'Me'|translate}}
<div ng-repeat="copayer in copayers">
<span class="item size-12" ng-show="copayer.id == wallet.copayerId">
<i class="icon ion-checkmark"></i> {{'Me'|translate}}
</span>
<span class="size-12 text-gray" ng-show="copayer.id != index.copayerId">
<i class="fi-check m5r"></i> {{copayer.name}}
<span class="item size-12 text-gray" ng-show="copayer.id != wallet.copayerId">
<i class="icon ion-checkmark"></i> {{copayer.name}}
</span>
</li>
</ul>
</div>