remove params from the url

This commit is contained in:
Gabriel Bazán 2016-09-02 11:20:33 -03:00
commit 0a5efb4930
3 changed files with 8 additions and 5 deletions

View file

@ -10,9 +10,7 @@ angular.module('copayApp.controllers').controller('backupWarningController', fun
$scope.close = function() {
backupWarningPopup.close();
$state.go('onboarding.backup', {
fromOnboarding: true
})
$state.go('onboarding.backup');
};
}
});

View file

@ -37,6 +37,7 @@ angular.module('copayApp.controllers').controller('tourController',
ongoingProcess.set('creatingWallet', false);
var wallet = walletClient;
$state.go('onboarding.collectEmail', {
fromOnboarding: true,
walletId: wallet.credentials.walletId
});
});