I am just trying to put a path and file extension around an expression ng-src like so:
<iframe src="'path/' + pattern.anchor + '.html'">
which would ideally resolve to:
<iframe src="path/name.html">
if pattern.anchor is set to "name". I have no problem with the expression showing up elsewhere in my template. If I leave src="{{pattern.anchor}} then I get src="name", which is great but of course not what I need.
Any reason why this is not working?