I want to add a popover to this glyphicon, however I cannot get it to work.
HTML
<a href="#" data-toggle="popover" title="Popover Header" data-content="You must branch to this flow first, before you can return to the original flow"><span ng-show="flow.branched_from.length==0" class="glyphicon glyphicon-question-sign" aria-hidden="true" ></span></a>
and at the end of the file:
<script>
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
</script>
I have included bootstrap at the beginning of my file.
I don't see what I'm doing wrong, tooltips work.