Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Created April 20, 2018 15:33
Show Gist options
  • Save wholypantalones/815afec22389f99f8de4a45f615f0e30 to your computer and use it in GitHub Desktop.
Save wholypantalones/815afec22389f99f8de4a45f615f0e30 to your computer and use it in GitHub Desktop.
Angularjs route params
var lastRoute = $route.current;
console.log(lastRoute);
$scope.$on('$locationChangeSuccess', function (event) {
if (lastRoute.$$route.originalPath === $route.current.$$route.originalPath) {
$route.current = lastRoute;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment