Merge pull request #1798 from cmgustavo/ux/user-menu
Removed createWallet page. Added link for create, join and import to the...
This commit is contained in:
commit
0c3a6f76cf
10 changed files with 28 additions and 31 deletions
|
|
@ -9,7 +9,7 @@ angular.module('copayApp.controllers').controller('CreateController',
|
|||
$scope.isMobile = !!window.cordova;
|
||||
$scope.hideAdv = true;
|
||||
$scope.networkName = config.networkName;
|
||||
$rootScope.title = 'Create a wallet';
|
||||
$rootScope.title = 'Add new wallet';
|
||||
|
||||
// ng-repeat defined number of times instead of repeating over array?
|
||||
$scope.getNumber = function(num) {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ angular.module('copayApp.controllers').controller('JoinController',
|
|||
$rootScope.fromSetup = false;
|
||||
$scope.loading = false;
|
||||
$scope.isMobile = !!window.cordova;
|
||||
$rootScope.title = 'Join a wallet';
|
||||
$rootScope.title = 'Join an existent wallet';
|
||||
|
||||
// QR code Scanner
|
||||
var cameraInput;
|
||||
|
|
|
|||
|
|
@ -76,10 +76,6 @@ angular
|
|||
.when('/profile', {
|
||||
templateUrl: 'views/profile.html',
|
||||
logged: true
|
||||
})
|
||||
.when('/createWallet', {
|
||||
templateUrl: 'views/createWallet.html',
|
||||
logged: true
|
||||
});
|
||||
|
||||
if (config.developmentFeatures) {
|
||||
|
|
|
|||
|
|
@ -231,7 +231,7 @@ angular.module('copayApp.services')
|
|||
if (w) {
|
||||
root.setFocusedWallet(w);
|
||||
} else {
|
||||
$location.path('/createWallet');
|
||||
$location.path('/create');
|
||||
}
|
||||
$timeout(function() {
|
||||
$rootScope.$digest()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue