Wallet to wallet flow

This commit is contained in:
Sebastiaan Pasma 2018-07-12 15:25:11 +02:00
commit 2e6ae9770e
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F
4 changed files with 52 additions and 11 deletions

View file

@ -8,6 +8,7 @@ angular.module('copayApp.directives')
transclude: true,
scope: {
title: '=walletSelectorTitle',
forceTitle: '=walletSelectorForceTitle',
show: '=walletSelectorShow',
wallets: '=walletSelectorWallets',
selectedWallet: '=walletSelectorSelectedWallet',
@ -15,6 +16,7 @@ angular.module('copayApp.directives')
displayBalanceAsFiat : '=walletSelectorDisplayBalanceAsFiat'
},
link: function(scope, element, attrs) {
console.log(scope, element, attrs);
scope.hide = function() {
scope.show = false;
};