diff --git a/js/controllers/join.js b/js/controllers/join.js index ea6d446a2..0adba7c7f 100644 --- a/js/controllers/join.js +++ b/js/controllers/join.js @@ -2,6 +2,7 @@ angular.module('copayApp.controllers').controller('JoinController', function($scope, $rootScope, $timeout, walletFactory, controllerUtils, Passphrase, notification) { + $rootScope.fromSetup = false; $scope.loading = false; // QR code Scanner diff --git a/js/controllers/open.js b/js/controllers/open.js index 917d1a281..f570fa0c4 100644 --- a/js/controllers/open.js +++ b/js/controllers/open.js @@ -7,6 +7,7 @@ angular.module('copayApp.controllers').controller('OpenController', v2 = o2.show.toLowerCase(); return v1 > v2 ? 1 : (v1 < v2) ? -1 : 0; }; + $rootScope.fromSetup = false; $scope.loading = false; $scope.wallets = walletFactory.getWallets().sort(cmp); $scope.selectedWalletId = walletFactory.storage.getLastOpened() || ($scope.wallets[0] && $scope.wallets[0].id); diff --git a/js/controllers/setup.js b/js/controllers/setup.js index cd3811853..babeca501 100644 --- a/js/controllers/setup.js +++ b/js/controllers/setup.js @@ -35,6 +35,7 @@ var valid_pairs = { angular.module('copayApp.controllers').controller('SetupController', function($scope, $rootScope, $location, $timeout, walletFactory, controllerUtils, Passphrase, backupService, notification) { + $rootScope.fromSetup = true; $rootScope.videoInfo = {}; $scope.loading = false; $scope.walletPassword = $rootScope.walletPassword; diff --git a/views/copayers.html b/views/copayers.html index e71e2d6c0..43744af8b 100644 --- a/views/copayers.html +++ b/views/copayers.html @@ -7,6 +7,7 @@
+ Step 3

Waiting copayers

Share this secret with your other copayers

diff --git a/views/setup.html b/views/setup.html index 0d5cc6dd7..826239ade 100644 --- a/views/setup.html +++ b/views/setup.html @@ -11,6 +11,8 @@
+ Step 1 + Step 2

Create new wallet