add home tip when onboarding is finished
This commit is contained in:
parent
5bd450270b
commit
c2c70779fa
8 changed files with 72 additions and 26 deletions
|
|
@ -15,7 +15,9 @@ angular.module('copayApp.controllers').controller('disclaimerController', functi
|
|||
profileService.setDisclaimerAccepted(function(err) {
|
||||
if (err) $log.error(err);
|
||||
else {
|
||||
$state.go('tabs.home');
|
||||
$state.go('tabs.home', {
|
||||
fromOnboarding: true
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
|||
|
|
@ -8,7 +8,9 @@ angular.module('copayApp.controllers').controller('termsController', function($s
|
|||
profileService.setDisclaimerAccepted(function(err) {
|
||||
if (err) $log.error(err);
|
||||
else {
|
||||
$state.go('tabs.home');
|
||||
$state.go('tabs.home', {
|
||||
fromOnboarding: true
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue