Using:
- ember: v1.0.0-pre.4
- ember-data: revision 11
- handlebars: 1.0.rc2
So I have a template that I've hooked up to a controller that's receiving info from an REST API. In just print out text, this is fine but these handlebar expression...
<img src="{{ imageUrl }}"/>
...when inserted into the dom look like:
<img src="<script id='metamorph-28-start' type='text/x-placeholder'></script>http://asdf.com/image.jpg<script id='metamorph-28-end' type='text/x-placeholder'></script>">
I'm obviously very new to Ember.js and Handlebars.
I've tried doing searches for "rendering urls in ember templates" and "print out html in ember mustache templates." Ack, probably obvious but I'm missing it.