wallet selection stub

This commit is contained in:
Sebastiaan Pasma 2018-07-18 16:48:57 +02:00
commit 047171f38e
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F
2 changed files with 4 additions and 1 deletions

View file

@ -10,5 +10,8 @@ angular.module('copayApp.controllers').controller('walletToWalletController', fu
}); });
}); });
$scope.useWallet = function(wallet) {
// Do something with selected wallet
};
}); });

View file

@ -19,7 +19,7 @@
<div> <div>
<a ng-repeat="wallet in walletsBch track by $index" <a ng-repeat="wallet in walletsBch track by $index"
class="item item-sub item-icon-left item-big-icon-left item-icon-right wallet" 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> <span ng-include="'views/includes/walletList.html'"></span>
</a> </a>
</div> </div>