add not available message

This commit is contained in:
Javier 2016-08-24 12:29:22 -03:00
commit 8a88e712e1
4 changed files with 8 additions and 1 deletions

View file

@ -92,6 +92,7 @@ angular.module('copayApp.controllers').controller('confirmController', function(
};
$scope.init = function() {
$scope.notAvailable = false;
$scope.wallet = profileService.getWallets()[0];
if ($stateParams.paypro) {

View file

@ -47,6 +47,7 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
$log.debug('No wallet provided');
return;
}
$scope.defaultWallet = wallet;
$log.debug('Wallet changed: ' + wallet.name);
$scope.setAddress(wallet);
});