auto refresh wallet every 10 minutes
This commit is contained in:
parent
d0a082f4a0
commit
9a85bcb4b6
1 changed files with 4 additions and 1 deletions
|
|
@ -390,13 +390,16 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var refreshInterval;
|
||||||
|
|
||||||
$scope.$on("$ionicView.afterEnter", function(event, data) {
|
$scope.$on("$ionicView.afterEnter", function(event, data) {
|
||||||
$scope.updateAll();
|
$scope.updateAll();
|
||||||
refreshAmountSection();
|
refreshAmountSection();
|
||||||
|
refreshInterval = $interval($scope.onRefresh, 600000);
|
||||||
});
|
});
|
||||||
|
|
||||||
$scope.$on("$ionicView.afterLeave", function(event, data) {
|
$scope.$on("$ionicView.afterLeave", function(event, data) {
|
||||||
|
$interval.cancel(refreshInterval);
|
||||||
if ($window.StatusBar) {
|
if ($window.StatusBar) {
|
||||||
var statusBarColor = appConfigService.name == 'copay' ? '#192c3a' : '#1e3186';
|
var statusBarColor = appConfigService.name == 'copay' ? '#192c3a' : '#1e3186';
|
||||||
$window.StatusBar.backgroundColorByHexString(statusBarColor);
|
$window.StatusBar.backgroundColorByHexString(statusBarColor);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue