fix timming / display issues

This commit is contained in:
Matias Alejo Garcia 2015-04-27 02:38:48 -03:00
commit 405e4cc75c
2 changed files with 20 additions and 22 deletions

View file

@ -145,14 +145,13 @@ angular.module('copayApp.controllers').controller('joinController',
extendedPrivateKey: form.privateKey.$modelValue,
myName: form.myName.$modelValue
}, function(err) {
self.loading = false;
if (err) {
self.loading = false;
self.error = 'Could not join wallet: ' + (err.message ? err.message : err);
$rootScope.$apply();
return
}
else {
go.walletHome();
}
go.walletHome();
});
}, 100);
}