do not hice create/join forms with working / no color on global pages
This commit is contained in:
parent
405e4cc75c
commit
2f7f593ad6
5 changed files with 19 additions and 10 deletions
|
|
@ -14,7 +14,7 @@
|
|||
</div>
|
||||
|
||||
|
||||
<form name="setupForm" ng-submit="create.create(setupForm)" ng-show="!create.loading" novalidate>
|
||||
<form name="setupForm" ng-submit="create.create(setupForm)" novalidate>
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<div class="box-notification" ng-show="create.error">
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
</section>
|
||||
|
||||
<section class="middle tab-bar-section">
|
||||
<h1 class="title ellipsis" ng-style="{'color':index.backgroundColor}">
|
||||
<h1 class="title ellipsis" ng-style="{'color': noColor ? '#4B6178' : index.backgroundColor}">
|
||||
{{(titleSection|translate) || index.walletName}}
|
||||
</h1>
|
||||
</section>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" ng-show="!join.loading">
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
|
||||
<div class="box-notification" ng-show="join.error ">
|
||||
|
|
|
|||
|
|
@ -151,7 +151,9 @@ angular.module('copayApp.controllers').controller('joinController',
|
|||
$rootScope.$apply();
|
||||
return
|
||||
}
|
||||
go.walletHome();
|
||||
$timeout(function() {
|
||||
go.walletHome();
|
||||
}, 2000);
|
||||
});
|
||||
}, 100);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@ angular
|
|||
templateUrl: 'views/createProfile.html',
|
||||
controller: function($scope) {
|
||||
$scope.mainDark = true;
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -122,6 +123,7 @@ angular
|
|||
templateUrl: 'views/includes/topbar.html',
|
||||
controller: function($scope) {
|
||||
$scope.goBackToState = 'walletHome';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -144,6 +146,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Join shared wallet';
|
||||
$scope.goBackToState = 'add';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -160,6 +163,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Import wallet';
|
||||
$scope.goBackToState = 'add';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -181,6 +185,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Import legacy wallet';
|
||||
$scope.goBackToState = 'add';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -199,6 +204,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Create new wallet';
|
||||
$scope.goBackToState = 'add';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -215,12 +221,6 @@ angular
|
|||
}
|
||||
}
|
||||
})
|
||||
.state('profile', {
|
||||
url: '/profile',
|
||||
controller: 'profileController',
|
||||
templateUrl: 'views/profile.html',
|
||||
needProfile: true
|
||||
})
|
||||
.state('preferences', {
|
||||
url: '/preferences',
|
||||
templateUrl: 'views/preferences.html',
|
||||
|
|
@ -252,6 +252,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Language';
|
||||
$scope.goBackToState = 'preferences';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -270,6 +271,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Unit';
|
||||
$scope.goBackToState = 'preferences';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -307,6 +309,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Alternative Currency';
|
||||
$scope.goBackToState = 'preferences';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -325,6 +328,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Bitcore Wallet Service';
|
||||
$scope.goBackToState = 'preferences';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -361,6 +365,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'About';
|
||||
$scope.goBackToState = 'preferences';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -379,6 +384,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Logs';
|
||||
$scope.goBackToState = 'about';
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -426,6 +432,7 @@ angular
|
|||
controller: function($scope) {
|
||||
$scope.titleSection = 'Add wallet';
|
||||
$scope.closeToHome = true;
|
||||
$scope.noColor = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue