Skip to content

Instantly share code, notes, and snippets.

@binzeehale
Created December 1, 2015 10:22
Show Gist options
  • Save binzeehale/b08aded4c58496d95c25 to your computer and use it in GitHub Desktop.
Save binzeehale/b08aded4c58496d95c25 to your computer and use it in GitHub Desktop.
ionic go back btn event
// Disable BACK button on home
$ionicPlatform.registerBackButtonAction(function (event) {
if($state.current.name=="app.home"){
navigator.app.exitApp();
}
else {
navigator.app.backHistory();
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment