Back button with nested states

OK, I found the answer here in another thread

Add this to your controller:

$scope.$on('$ionicView.beforeEnter', function (event, viewData) {
    viewData.enableBack = true;
});
1 Like