Reputation: 2583
While trying to access window.location or window.history directly, how can I do the following in AngularJS:
For example:
Upvotes: 8
Views: 7595
Reputation: 17878
Is this what you want?
$location.path('/blahblah').replace();
See API Docs for $location
Upvotes: 11