increase loading animation time

This commit is contained in:
Gabriel Bazán 2016-10-14 10:25:52 -03:00
commit 1d82c50f14
2 changed files with 6 additions and 2 deletions

View file

@ -211,7 +211,9 @@ angular.module('copayApp.controllers').controller('tabHomeController',
};
$scope.onRefresh = function() {
$scope.$broadcast('scroll.refreshComplete');
$timeout(function() {
$scope.$broadcast('scroll.refreshComplete');
}, 300);
updateAllWallets();
};

View file

@ -162,7 +162,9 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
};
$scope.onRefresh = function() {
$scope.$broadcast('scroll.refreshComplete');
$timeout(function() {
$scope.$broadcast('scroll.refreshComplete');
}, 300);
$scope.updateAll(true);
};