This commit is contained in:
Gabriel Bazán 2016-09-22 16:50:06 -03:00
commit 8f40484a71
4 changed files with 10 additions and 13 deletions

View file

@ -178,12 +178,15 @@ angular.module('copayApp.controllers').controller('createController',
if (!client.isComplete()) {
$ionicHistory.nextViewOptions({
disableBack: true
});
$state.go('tabs.copayers', {
walletId: client.credentials.walletId,
fromAddShared: true
disableAnimate: true
});
$ionicHistory.removeBackView();
$state.go('tabs.home');
$timeout(function() {
$state.transitionTo('tabs.copayers', {
walletId: client.credentials.walletId
});
}, 100);
}
else $state.go('tabs.home')
});