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
Ember.TEMPLATEScollection, so perhaps your should compile and store the templates into this collection rather thanHandlebars.templatescollection. I'm saying this because if you doEm.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 toEm.TEMPLATESinstead – MilkyWayJoe Dec 18 '12 at 18:17