fix sweep paper wallet backup message

This commit is contained in:
Gabriel Bazán 2016-10-27 12:33:08 -03:00
parent 72f3a79457
commit 8074db20e6
2 changed files with 5 additions and 6 deletions

View File

@ -120,10 +120,9 @@ angular.module('copayApp.controllers').controller('paperWalletController',
});
};
$scope.$on("$ionicView.enter", function(event, data) {
$scope.$on("$ionicView.beforeEnter", function(event, data) {
var wallet = profileService.getWallet($stateParams.walletId);
$scope.wallet = wallet;
$scope.isCordova = platformInfo.isCordova;
$scope.needsBackup = wallet.needsBackup;
$scope.walletAlias = wallet.name;
$scope.walletName = wallet.credentials.walletName;

View File

@ -6,17 +6,17 @@
</ion-nav-bar>
<ion-content>
<div class="settings" class="row" ng-show="needsBackup">
<div class="settings ng-hide" class="row" ng-show="needsBackup">
<div class="settings-explanation">
<div class="settings-heading" translate>Backup Needed</div>
<div class="settings-description" translate>
Before receiving funds, you must backup your wallet. If this device is lost, it is impossible to access your funds without a backup.
</div>
<a class="button button-standard button-primary" href ui-sref="tabs.preferences.preferencesAdvanced" translate>Preferences</a>
<a class="button button-standard button-primary" href ui-sref="tabs.preferences.backupWarning({from: 'tabs.preferences'})" translate>Backup Now</a>
</div>
</div>
<div ng-show="!needsBackup">
<div class="ng-hide" ng-show="!needsBackup">
<h4 ng-show="!error"></h4>
<div class="box-notification m20b" ng-show="error">
<span class="text-warning">{{error|translate}}</span>
@ -41,7 +41,7 @@
<span class="input-label" translate>Password</span>
<input type="text" name="passphrase" placeholder="{{'Passphrase'|translate}}" ng-model="passphrase">
</label>
<p ng-show="isCordova" class="card size-12 text-gray" translate>
<p class="card size-12 text-gray" translate>
Decrypting a paper wallet could take around 5 minutes on this device. please be patient and keep the app open.
</p>
</div>