Previously, the default $location.hashPrefix
was an empty string until version 1.5.8 of AngularJS, but it was changed to "!" in version 1.5.9. This modification has caused issues in my codebase where there are instances like
<a ng-ref="/Customer#/{{customerId}}>
that are now failing. Is there a universal solution to address this problem or do I need to manually update all affected areas before upgrading to 1.5.9? Additionally, I am curious about the reasoning behind this change as I have not been able to find any discussions on it...