A similar question was asked here, and it was a question similar to what I had. I suspected the anchor was problematic with Angular's routing, but now the collapse's are unresponsive. No open or expanding occurs when clicking. Is there some extra implementation that needs to be done to make it work in AngularJS beyond adding the data-target tag?
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
Button with data-target
</button>
<div class="collapse" id="collapseExample">
<div class="well">
...
</div>
</div>