This commit is contained in:
Matias Alejo Garcia 2014-09-04 16:23:37 -03:00
commit 9ad326cd30
8 changed files with 20 additions and 22 deletions

View file

@ -4,10 +4,10 @@ angular.module('copayApp.controllers').controller('HomeController', function($sc
controllerUtils.redirIfLogged();
$scope.loading = true;
$scope.retreiving = true;
walletFactory.getWallets(function(ret) {
$scope.loading = false;
$scope.retreiving = false;
$scope.hasWallets = (ret && ret.length > 0) ? true : false;
});
});