adding loading placeholders to avoid the screen resize

This commit is contained in:
Gabriel Bazán 2017-04-14 18:26:56 -03:00
commit 10986850d0
3 changed files with 126 additions and 61 deletions

View file

@ -194,6 +194,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
if (err) $log.error(err);
$scope.txps = txps;
$scope.txpsN = n;
$scope.txpsFinished = true;
$timeout(function() {
$ionicScrollDelegate.resize();
$scope.$apply();
@ -225,6 +226,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
}
if (++j == i) {
updateTxps();
$scope.walletsFinished = true;
}
});
});
@ -252,6 +254,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
}
$scope.notifications = notifications;
$scope.notificationsN = total;
$scope.notificationsFinished = true;
$timeout(function() {
$ionicScrollDelegate.resize();
$scope.$apply();