Show error when selecting a not ready wallet

This commit is contained in:
Gustavo Maximiliano Cortez 2016-08-09 09:57:40 -03:00
parent fef82e8697
commit 36692f4269
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
2 changed files with 7 additions and 4 deletions

View File

@ -132,9 +132,6 @@ angular.module('copayApp.controllers').controller('addressbookController', funct
else {
$scope.gettingAddress = true;
$scope.selectedWalletName = walletName;
$timeout(function() {
$scope.$apply();
});
addressService.getAddress(walletId, false, function(err, addr) {
$scope.gettingAddress = false;
@ -148,6 +145,9 @@ angular.module('copayApp.controllers').controller('addressbookController', funct
$scope.cancel();
});
}
$timeout(function() {
$scope.$apply();
});
});
};

View File

@ -1,6 +1,6 @@
'use strict';
angular.module('copayApp.controllers').controller('walletsController', function($scope, bwcError, profileService) {
angular.module('copayApp.controllers').controller('walletsController', function($scope, $timeout, bwcError, profileService) {
$scope.selectWallet = function(walletId) {
@ -10,6 +10,9 @@ angular.module('copayApp.controllers').controller('walletsController', function(
profileService.isReady(client, function(err) {
if (err) {
$scope.errorSelectedWallet[walletId] = bwcError.msg(err);
$timeout(function() {
$scope.$apply();
});
return;
}