I would like to know how I turn off the Ionic menu startup on a given page, since I do not want the services
of it to be enabled as well.
I would like to know how I turn off the Ionic menu startup on a given page, since I do not want the services
of it to be enabled as well.
Try something like this:
$ionicHistory.nextViewOptions({
disableBack: false,
historyRoot: true
});
$ionicHistory.clearCache();
$ionicHistory.clearHistory();
$state.go("nhaac.perfil");
Declaring the $ ionicHistory in your controller.