fix send tip
This commit is contained in:
parent
736174132a
commit
2ef44c146a
1 changed files with 9 additions and 3 deletions
|
|
@ -106,7 +106,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
|
|
||||||
|
|
||||||
var updateHasFunds = function() {
|
var updateHasFunds = function() {
|
||||||
$scope.hasFunds = null;
|
$scope.hasFunds = true;
|
||||||
|
|
||||||
var wallets = profileService.getWallets({
|
var wallets = profileService.getWallets({
|
||||||
onlyComplete: true,
|
onlyComplete: true,
|
||||||
|
|
@ -114,6 +114,9 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
|
|
||||||
if (!wallets || !wallets.length) {
|
if (!wallets || !wallets.length) {
|
||||||
$scope.hasFunds = false;
|
$scope.hasFunds = false;
|
||||||
|
$timeout(function() {
|
||||||
|
$scope.$apply();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var index = 0;
|
var index = 0;
|
||||||
|
|
@ -124,13 +127,16 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
$log.error(err);
|
$log.error(err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (status.availableBalanceSat && status.availableBalanceSat > 0) {
|
||||||
if (status.availableBalanceSat) {
|
|
||||||
$scope.hasFunds = true;
|
$scope.hasFunds = true;
|
||||||
}
|
}
|
||||||
|
else $scope.hasFunds = false;
|
||||||
if (index == wallets.length) {
|
if (index == wallets.length) {
|
||||||
$scope.hasFunds = $scope.hasFunds || false;
|
$scope.hasFunds = $scope.hasFunds || false;
|
||||||
}
|
}
|
||||||
|
$timeout(function() {
|
||||||
|
$scope.$apply();
|
||||||
|
})
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue