I am brand new to Angular so this question is difficult to ask and describe.
The last stack overflow question posted regarding writing HTML to a page with Angular JS was posted over two years ago and I have not been able to get it to work.
Basically, I am trying to write the HTML for an IFrame that is stored in a variable in the HomeController to a view.
I am trying to use angular-sanitize.min.js.
//The Code Inside the HomeController
$scope.AudioPlayer = '<iframe width="100%" height="300" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/47990402&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"></iframe>';
// On HTML View Page This Code Has Been Added
<div class="SongPlayer" ng-bind-html="AudioPlayer"></div>
All of the other variables passed into the HTML view load correctly within the {{templating}} tags.