I am trying to get ng-src to work in an iframe, but I can't seem to figure it out. Is it possible?
<div class="row" ng-init="video='http://www.youtube.com/embed/gMW8jUX14Y0'">
  <div class="col-md-12">
    <!-- 16:9 aspect ratio -->
    <div class="embed-responsive embed-responsive-16by9">
      <iframe class="embed-responsive-item" ng-src="{{ video }}"></iframe>
    </div>     
  </div>
</div>
The page loads a blank iframe and it never refreshes. on the same page I can include this code and it works just fine.
<a ng-href="{{ video }}">Link</a>
 
     
    