Answer the question
In order to leave comments, you need to log in
How to remove "back" button listener in ionics?
Registered the listener via $ionicPlatform.registerBackButtonAction(confirmExit, 100); I try to remove via $ionicPlatform.offHardwareBackButton(confirmExit) does not help.
Answer the question
In order to leave comments, you need to log in
var deregister;
$scope.$on('$ionicView.beforeEnter', function () {
deregister = $ionicPlatform.registerBackButtonAction(function (e) {
//suit yourself
});
});
$scope.$on('$ionicView.beforeLeave', function () {
deregister(); //remove listener
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question