Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have precompiled my handlebars templates, but ember can no longer find them where referencing them like this:

App.ApplicationView = Ember.View.extend
    templateName: "application"

I get this error:

Uncaught Error: < App.ApplicationView:ember390 > - Unable to find template "application".

It works when I reference the template like this:

App.ApplicationView = Ember.View.extend
   template: Handlebars.templates["application"]

..but I'd like to know why I can't do it the first way

share|improve this question
Do you have a template created like <script type="text/x-handlebars" data-template-name="application">some content ...</script> in your html? – Márcio Rodrigues Correa Júnior Dec 18 '12 at 12:20
I'm not 100% sure about this, but I think Ember searches at Ember.TEMPLATES collection, so perhaps your should compile and store the templates into this collection rather than Handlebars.templates collection. I'm saying this because if you do Em.TEMPLATES["somename"] = Em.Handlebars.compile("some template") you'll be able to get it by name as in your first script, so perhaps you should just add another step in your pipeline to transfer to Em.TEMPLATES instead – MilkyWayJoe Dec 18 '12 at 18:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.