I have an angular project that will be loading external HTML from a string variable into a div that currently has a controller scoped to it.
The HTML that I will be loading from the var will have angular bindings in the html. Once loaded the bindings don't seem to work. I'm wondering how I get angular to recognize the new HTML and parse the bindings so that content renders properly.
Right now the HTML loads but I end up seeing things like {{myvar}} render as text and not render the scoped variables.