populate wallet list
This commit is contained in:
parent
1d5299e254
commit
b42bf01f6a
4 changed files with 67 additions and 6 deletions
|
|
@ -79,8 +79,25 @@
|
|||
<span ng-hide="wallet.m > 1">Payment Sent</span>
|
||||
<span ng-show="wallet.m > 1">Proposal Created</span>
|
||||
</slide-to-accept-success>
|
||||
<action-sheet action-sheet-show="showWallets">
|
||||
|
||||
<action-sheet action-sheet-show="showWallets" class="wallet-selector">
|
||||
<!-- <div ng-repeat="wallet in wallets">{{wallet.name}}</div> -->
|
||||
<a ng-repeat="wallet in wallets track by $index" class="item item-icon-left item-big-icon-left item-icon-right wallet" ng-click="openWallet(wallet)">
|
||||
<i class="icon big-icon-svg">
|
||||
<img src="img/icon-wallet.svg" ng-style="{'background-color': wallet.color}" class="bg">
|
||||
</i>
|
||||
<div class="wallet-details">
|
||||
<span>
|
||||
{{wallet.name}}
|
||||
</span>
|
||||
<p>
|
||||
<span ng-if="wallet.isComplete()">
|
||||
<span ng-if="!wallet.balanceHidden" class="ng-binding">0.00 BTC</span>
|
||||
</span>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<!-- <i class="icon bp-arrow-right"></i> -->
|
||||
</a>
|
||||
</action-sheet>
|
||||
</ion-view>
|
||||
<!-- <ion-view id="view-confirm">
|
||||
|
|
|
|||
|
|
@ -5,4 +5,6 @@
|
|||
</div>
|
||||
<div class="bp-action-sheet__sheet" ng-class="{'slide-up': show}">
|
||||
<img class="back-arrow" src="img/icon-back-arrow.svg" ng-click="hide()">
|
||||
<div class="header">Send from</div>
|
||||
<ng-transclude></ng-transclude>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue