change title
This commit is contained in:
parent
b9f5728ab7
commit
6b454bb1f1
5 changed files with 28590 additions and 5 deletions
11968
public/css/copay.css
Normal file
11968
public/css/copay.css
Normal file
File diff suppressed because it is too large
Load diff
16611
public/js/copay.js
Normal file
16611
public/js/copay.js
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -6,6 +6,7 @@ angular.module('copayApp.controllers').controller('disclaimerController', functi
|
||||||
$scope.terms = {};
|
$scope.terms = {};
|
||||||
$scope.accept1 = $scope.accept2 = $scope.accept3 = false;
|
$scope.accept1 = $scope.accept2 = $scope.accept3 = false;
|
||||||
$scope.backedUp = $stateParams.backedUp;
|
$scope.backedUp = $stateParams.backedUp;
|
||||||
|
$scope.resume = $stateParams.resume;
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
$scope.$apply();
|
$scope.$apply();
|
||||||
}, 1);
|
}, 1);
|
||||||
|
|
@ -35,8 +36,10 @@ angular.module('copayApp.controllers').controller('disclaimerController', functi
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.goBack = function(){
|
$scope.goBack = function() {
|
||||||
$state.go('onboarding.backupRequest', {walletId: $stateParams.walletId});
|
$state.go('onboarding.backupRequest', {
|
||||||
|
walletId: $stateParams.walletId
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -979,7 +979,9 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$log.debug('Display disclaimer... redirecting');
|
$log.debug('Display disclaimer... redirecting');
|
||||||
$state.go('onboarding.disclaimer');
|
$state.go('onboarding.disclaimer', {
|
||||||
|
resume: true
|
||||||
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new Error(err); // TODO
|
throw new Error(err); // TODO
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,9 @@
|
||||||
</ion-nav-bar>
|
</ion-nav-bar>
|
||||||
<ion-content scroll="false" ng-class="{'has-header': backedUp == 'false'}">
|
<ion-content scroll="false" ng-class="{'has-header': backedUp == 'false'}">
|
||||||
<div id="onboarding-disclaimer-container">
|
<div id="onboarding-disclaimer-container">
|
||||||
<div class="onboarding-topic" id="disclaimer-topic">Almost done! Let's review.</div>
|
<div ng-show="resume" class="onboarding-topic" id="disclaimer-topic" translate>Please review the terms.</div>
|
||||||
<div class="onboarding-description" id="disclaimer-description">Bitcoin is different – it cannot be safely held with a bank or web service.</div>
|
<div ng-show="!resume" class="onboarding-topic" id="disclaimer-topic" translate>Almost done! Let's review.</div>
|
||||||
|
<div class="onboarding-description" id="disclaimer-description" translate>Bitcoin is different – it cannot be safely held with a bank or web service.</div>
|
||||||
<ion-list>
|
<ion-list>
|
||||||
<ion-checkbox ng-model="accept1">
|
<ion-checkbox ng-model="accept1">
|
||||||
<span translate>I understand that my funds are held securely on this device, not by a company.</span>
|
<span translate>I understand that my funds are held securely on this device, not by a company.</span>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue