I'm currently using the ng-repeat
directive in Angular to display a series of videos obtained from the server.
The video IDs are received from the server and the code looks like this:
<div ng-repeat="media in product.media">
<div class="thumbnail">
<div class="video-container">
<iframe width="100%" src="//www.youtube.com/embed/{{ media.src }}" frameborder="0 " allowfullscreen></iframe>
</div>
</div>
</div>
However, upon viewing the output, the video does not appear. Additionally, when I inspect the element in Google Chrome, it seems that the HTML remains unchanged:
Any suggestions or ideas on how to resolve this issue?