This is because of HTML link rewriting of Angular, explained here.
To prevent rewriting of location, add target=_self
to those bootstrap links.
So instead of <a href="#myModal">
you need <a href="#myModal" target="_self">
This is because of HTML link rewriting of Angular, explained here.
To prevent rewriting of location, add target=_self
to those bootstrap links.
So instead of <a href="#myModal">
you need <a href="#myModal" target="_self">