Fix paypro

This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-22 19:27:59 -03:00
commit d023f9b2b5
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 9 additions and 10 deletions

View file

@ -61,11 +61,6 @@ angular.module('copayApp.controllers').controller('confirmController', function(
$scope.notAvailable = true;
$log.warn('No wallet available to make the payment');
}
$timeout(function() {
$scope.$apply();
});
return;
}
});
});
@ -73,6 +68,10 @@ angular.module('copayApp.controllers').controller('confirmController', function(
txFormatService.formatAlternativeStr(amount, function(v) {
$scope.alternativeAmountStr = v;
});
$timeout(function() {
$scope.$apply();
}, 100);
};
$scope.$on('accepted', function(event) {