I am having trouble displaying custom HTML content in a popover when clicking on my "View" link. Although other content is rendering correctly, such as one with an ng-repeat inside it, my custom directive does not seem to be processed and displayed properly.
http://plnkr.co/edit/Jy8Qlp1rsghwj4NNF2Dn?p=preview
<div ng-controller="ChordCtrl">
<chord-layout chord-matrix="{{matrix}}">
<div id="chordLayoutHolder"></div>
</chord-layout>
</div>
Although there is a lot happening in this plunker example, my main issue is that the dynamic contents of report1.html are not showing up in my tooltip when I click on any "View" link within the table. The chord layout rendering seems to fail, even though it works independently in another plunker - http://plnkr.co/edit/q5DDdKHs11OuW6SfLtTG?p=preview
If anyone can help me figure out why my chord layout chart is not rendering correctly, I would greatly appreciate it.
Thank you