I am working on a project that uses Angularjs and Twitter Bootstrap.
Bootstrap uses # to toggle components such as popover, modal etc. for example:
&
This is because of HTML link rewriting of Angular, explained here.
To prevent rewriting of location, add target=_self to those bootstrap links.
target=_self
So instead of <a href="#myModal"> you need <a href="#myModal" target="_self">
<a href="#myModal">
<a href="#myModal" target="_self">