Fix paypro
This commit is contained in:
parent
fbe14be31a
commit
d023f9b2b5
2 changed files with 9 additions and 10 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue