Update: Runs initBitcoinCoreDisplay after everything has been loaded

This commit is contained in:
Sam Cheng Hung 2018-04-03 16:49:21 +09:00
commit 1be4c7d235
2 changed files with 3 additions and 4 deletions

View file

@ -24,8 +24,8 @@
"windowsAppId": "804636ee-b017-4cad-8719-e58ac97ffa5c",
"pushSenderId": "1036948132229",
"description": "A Secure Bitcoin Wallet",
"version": "4.7.1",
"androidVersion": "407100",
"version": "4.7.2",
"androidVersion": "407200",
"_extraCSS": "",
"_enabledExtensions": {
"coinbase": false,

View file

@ -1310,13 +1310,12 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
applicationService.appLockModal('check');
});
};
profileService.initBitcoinCoreDisplay();
// After everything have been loaded
$timeout(function() {
emailService.init(); // Update email subscription if necessary
openURLService.init();
profileService.initBitcoinCoreDisplay();
}, 1000);
});
});