Skip to content

Instantly share code, notes, and snippets.

@hunterloftis
Created May 8, 2013 22:25
Show Gist options
  • Save hunterloftis/5544148 to your computer and use it in GitHub Desktop.
Save hunterloftis/5544148 to your computer and use it in GitHub Desktop.
$scope.$on('details', function(event, args) {
console.log('location.path:', $location.path()); // outputs "/"
//document.location.hash = '/details/123'; // works
//$location.path('/details/123'); // doesn't work
$location.path('details/123'); // doesn't work
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment