wallet selection stub
This commit is contained in:
parent
46906352e5
commit
047171f38e
2 changed files with 4 additions and 1 deletions
|
|
@ -10,5 +10,8 @@ angular.module('copayApp.controllers').controller('walletToWalletController', fu
|
|||
});
|
||||
});
|
||||
|
||||
$scope.useWallet = function(wallet) {
|
||||
// Do something with selected wallet
|
||||
};
|
||||
|
||||
});
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
<div>
|
||||
<a ng-repeat="wallet in walletsBch track by $index"
|
||||
class="item item-sub item-icon-left item-big-icon-left item-icon-right wallet"
|
||||
ng-click="openWallet(wallet)">
|
||||
ng-click="useWallet(wallet)">
|
||||
<span ng-include="'views/includes/walletList.html'"></span>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue