allow wallets to be selected

This commit is contained in:
Marty Alcala 2016-10-12 18:49:00 -04:00
commit 252686688e
4 changed files with 73 additions and 57 deletions

View file

@ -118,6 +118,13 @@ angular.module('copayApp.controllers').controller('confirmController', function(
$scope.showWallets = true;
};
$scope.selectWallet = function(w) {
$timeout(function() {
$scope.showWallets = false;
}, 100);
setWallet(w);
};
$scope.showDescriptionPopup = function() {
var message = gettextCatalog.getString('Add description');