I tried to make work an example o a back button in the footer.
I tried the code that is on stackoverflow and it does not wotk, on my console it says that clicked but it does not go back,
if anyone could help me please
.controller('goBackController', ['$scope', '$ionicNavBarDelegate',
function($scope, $ionicNavBarDelegate) {
$scope.goBack = function() {
console.log('click')
$ionicNavBarDelegate.back();
};
}
])
<div class="bar bar-footer bar-dark" ng-controller="goBackController">
<button class="button button-outline button-light" ng-click="goBack()">
<i class="ion-arrow-left-c"></i> Back</button>
</div>