I need to evaluate the Ember Template programmatically, so that I can generate the HTML that is obtained by evaluating the Ember Template in the supplied context.
I want to use this generated HTML to paste into Google InfoWindow maps (a small modal code that appears when you click on a marker.)
All variables will be unbound.
I tried
Ember.TEMPLATES['templateName']( {context: 'suppliedHere})
but it expects Ember.RenderBuffer to exist in the data.buffer object
source share