Skip to content

Instantly share code, notes, and snippets.

Created December 15, 2014 15:59
Show Gist options
  • Save anonymous/5a27cbae06e79a6c4f8d to your computer and use it in GitHub Desktop.
Save anonymous/5a27cbae06e79a6c4f8d to your computer and use it in GitHub Desktop.
//listen for route update (refresh)
$rootScope.$on('$locationChangeStart', function(event){
//check for a param in the url
var recentlyAdded = ($location.search()).recentlyAdded;
if($location.path() == "/dasbhoard" && recentlyAdded){
//redirect without the param
$location.path('/dashboard');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment