I’m trying to show an icon on header with ion-nav-buttons, but just if back button is hidden with hide-back-button or whatever
What can I do?
I’m trying to show an icon on header with ion-nav-buttons, but just if back button is hidden with hide-back-button or whatever
What can I do?
You could adapt this to work for you.
$rootScope.$on('$viewHistory.historyChange', function(e, data) {
if (data.showBack) {
doSomething();
}
});
I found the above code to not work in beta 14 and had to do the following instead (hope this helps out anyone else searching for an answer):
$rootScope.$on('$ionicView.beforeEnter', function (e, data) {
if (data.enableBack) {
doSomething();
}
});