I"m running into an issue when I click on a quicknav, the anchor tag replaces my search parameters in the URL.
'example.com/search?hash=1234'
becomes 'example.com/search#FAQ'
instead of 'example.com/search?hash=1234#FAQ'
How do I fix this? Version 1.1.5
HTML anchor tags:
<a href="#{{page.id}}" ng-repeat="page in results.page">{{page.id}}</a>
I do have HTML5 mode enabled if that makes a difference:
.config(['$locationProvider', function($locationProvider){
$locationProvider.html5Mode(true).hashPrefix('!');
}]);