Skip to content

Instantly share code, notes, and snippets.

@tanftw
Created August 17, 2016 00:03
Show Gist options
  • Select an option

  • Save tanftw/ec6475624b8432743affc8bfb6155d97 to your computer and use it in GitHub Desktop.

Select an option

Save tanftw/ec6475624b8432743affc8bfb6155d97 to your computer and use it in GitHub Desktop.
Location change message
$scope.$on('$locationChangeStart', function( event ) {
var answer = confirm("Are you sure you want to leave this page?")
if (!answer) {
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment