fix empty send view

This commit is contained in:
Gabriel Bazán 2016-12-19 17:15:31 -03:00
parent f587b08863
commit f18613a4d7
1 changed files with 1 additions and 1 deletions

View File

@ -133,6 +133,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
lodash.each(wallets, function(w) {
walletService.getStatus(w, {}, function(err, status) {
++index;
if (index == wallets.length) $scope.checkingBalance = false;
if (err || !status) {
$log.error(err);
return;
@ -144,7 +145,6 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
}
if (index == wallets.length) {
$scope.checkingBalance = false;
if ($scope.hasFunds != true) {
$ionicScrollDelegate.freezeScroll(true);
}