Suppose I have this tag in a template URL, into which HTML coming from the model is injected (HTML is basically <li> bullet points):
<div ng-bind-html="accident.description.impact"></div>
A portion of the model is as follows:
"cause":
"<ul>\n\
<li>\n\
<div><span inline-popover \n\
popover-html=\"Taper pour ouvrir la vue détaillée\" \n\
popover-placement=\"bottom\" \n\
popover-label=\"Larve de taupin\">Larve de taupin</span></div>\n\
</li>\n\
<li>Semences en cours de germination</li>\n\
</ul>",
And as you can see, some <li> contains tags that enables for opening a popup.
The issue I have, is that the span is cut off from his attributes, once injected in the partial.
Any idea?