Skip to content

Instantly share code, notes, and snippets.

@MehulATL
Created November 7, 2014 22:04
Show Gist options
  • Save MehulATL/f7b6c4755b14443f702f to your computer and use it in GitHub Desktop.
Save MehulATL/f7b6c4755b14443f702f to your computer and use it in GitHub Desktop.
programatic version of ionic's nav-clear directive
var unregisterListener = $rootScope.$on('$stateChangeStart', function() {
$ionicViewService.nextViewOptions({
disableBack: true
});
unregisterListener();
});
$window.setTimeout(unregisterListener, 300);
$state.go('someState');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment