Statusbar: If do not have any wallet
This commit is contained in:
parent
9982bef8df
commit
23596b749f
1 changed files with 3 additions and 3 deletions
|
|
@ -106,9 +106,9 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
|||
$rootScope.shouldHideMenuBar = false;
|
||||
});
|
||||
|
||||
if (platformInfo.isCordova && StatusBar.isVisible) {
|
||||
var fc = profileService.focusedClient;
|
||||
StatusBar.backgroundColorByHexString(fc.backgroundColor);
|
||||
if (isCordova && StatusBar.isVisible) {
|
||||
var backgroundColor = profileService.focusedClient ? profileService.focusedClient.backgroundColor : "#4B6178";
|
||||
StatusBar.backgroundColorByHexString(backgroundColor);
|
||||
}
|
||||
|
||||
this.onQrCodeScanned = function(data) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue