Occasionally my AngularJS app refreshes when clicking a link that takes you somewhere within the site. There doesn't appear to be any consistency with this, sometimes it's with href="/foo"
and other times with ng-href="/foo/{{bar}}"
I seem to be able to reproduce this when I click between links in the navigation a bit too quickly and I get a full app refresh.
I would really like to avoid replacing all my hrefs across the site with ng-click that triggers $location.path('foo'); type functions if possible...
Anyone else encountered this issue? I'm using AngularJS 1.4.2
Thanks!