Fix topbar for mobile

This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-02 13:00:38 -03:00
commit f8fddd2431
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
12 changed files with 18 additions and 63 deletions

View file

@ -30,4 +30,8 @@ angular.module('copayApp.controllers').controller('collectEmailController', func
});
});
};
$scope.onboardingMailSkip = function() {
$state.go('onboarding.backupRequest');
};
});

View file

@ -30,9 +30,6 @@ angular.module('copayApp.controllers').controller('tabSettingsController', funct
$scope.glideraEnabled = config.glidera.enabled;
$scope.coinbaseEnabled = config.coinbase.enabled;
$scope.pushNotifications = config.pushNotifications.enabled;
if (isCordova && StatusBar.isVisible) {
StatusBar.backgroundColorByHexString("#4B6178");
}
$scope.otherWallets = lodash.filter(profileService.getWallets(self.network), function(w) {
return w.id != self.walletId;
});