clearer notes regarding recovery phrases

This commit is contained in:
Kadir Sekha 2018-01-16 11:36:52 +09:00
commit b6c1d4f88a
2 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,11 @@
angular.module('copayApp.controllers').controller('backupController',
function($scope, $timeout, $log, $state, $stateParams, $ionicHistory, lodash, profileService, bwcService, walletService, ongoingProcess, popupService, gettextCatalog, $ionicModal, firebaseEventsService) {
if ($state.current.name == 'onboarding.backup') {
$scope.onboarding = true;
}
if ($stateParams.bchWalletId && $stateParams.btcWalletId) {
$scope.wallet = profileService.getWallet($stateParams.bchWalletId);
$scope.btcWallet = profileService.getWallet($stateParams.btcWalletId);