diff --git a/js/controllers/join.js b/js/controllers/join.js index e1029fac2..3234e1bae 100644 --- a/js/controllers/join.js +++ b/js/controllers/join.js @@ -127,13 +127,13 @@ angular.module('copayApp.controllers').controller('JoinController', return; } - $scope.loading = true; + $rootScope.starting = true; identityService.joinWallet({ secret: $scope.connectionId, nickname: $scope.nickname, privateHex: $scope.private, }, function(err) { - $scope.loading = false; + $rootScope.starting = false; if (err) { if (err === 'joinError') notification.error('Fatal error connecting to Insight server'); diff --git a/views/create.html b/views/create.html index 58150b70a..e3cadd62e 100644 --- a/views/create.html +++ b/views/create.html @@ -1,8 +1,8 @@