fix warning message on confirm view

This commit is contained in:
Javier 2016-10-26 11:20:57 -03:00
parent 1f64c5adaa
commit ba2d60cfe0
1 changed files with 4 additions and 1 deletions

View File

@ -91,6 +91,9 @@ angular.module('copayApp.controllers').controller('confirmController', function(
$scope.insuffientFunds = true;
$log.warn('No wallet available to make the payment');
$timeout(function() {
$scope.$apply();
});
}
}
});
@ -102,7 +105,7 @@ angular.module('copayApp.controllers').controller('confirmController', function(
$timeout(function() {
$scope.$apply();
}, 100);
});
};
$scope.$on('accepted', function(event) {