You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
With latest fixes for (4b3a590, #10397, #10960), now if we click on a link to go to the same page, page is not getting reloaded. Instead a empty hash tag is getting appended at the end.
If I am on dummy.com/page1#/abc and I click on a link with href "page1" then angular is not reloading the page. I get new link as dummy.com/page1#
Even "otherwise" in $routeProvider is not working in this case.
The text was updated successfully, but these errors were encountered:
I am not sure how to reproduce it on plunker but i'll try to explain it here.
Current URL: www.dummy.com/dashboard#/companies
I have a home (anchor) link with href="dashboard"
Earlier when user used to click on this, page used to reload but now when user clicks
New URL : www.dummy.com/dashboard#
without the page reload.
The behaviour demonstrated in this issue is what we want to happen in the majority of cases. In other words, we do not want to trigger page reloads if we are just effectively changing the hash.
With latest fixes for (4b3a590, #10397, #10960), now if we click on a link to go to the same page, page is not getting reloaded. Instead a empty hash tag is getting appended at the end.
If I am on dummy.com/page1#/abc and I click on a link with href "page1" then angular is not reloading the page. I get new link as dummy.com/page1#
Even "otherwise" in $routeProvider is not working in this case.
The text was updated successfully, but these errors were encountered: