Hi,
My AngularJS app is a Chrome extension. My code looks like:
<li ng-repeat="i in list">
<sapn>{{i.v1}}: </span><span id="test" ng-bind-html-unsafe="{v.getRawHTML()}"></span>
{{w.content}}
</li>
The "ng-repeat" attribute is evaluated correctly and my list is displayed as expected. But the span[id=test] is always empty. I tried to debug my app, and it seems the method "getRawHTML" is never invoked. It seems to me the expression "{{i.v1}}" is evaluated correctly, but why the "ng-bind-html-unsafe" attribute is not evaluated?
Thank you,
David