I have an angularjs generated html page, and want to embedd a flash video in it.
Problem: the video url is dynamically provided by a backend, so I tried binding it as follows:
<div ng-bind-html="{{my.video.html}}"></div>
Result that gets rendered:
<div ng-bind-html="<object classid="..." codebase="..." flashvideo...><embed type="application/x-shockwave-flash"...>"></div>
But I don't see anything on the page.
If I'd just pase the <object..
html code statically into the webpage, it would work.
So what am I missing when using angularjs?