ember-tools
ember-tools copied to clipboard
Template not bound to view when generated in subfolder
When i do:
ember --generate -vt Form/Base
A template is generated with the following name "form/base" which prevents the Ember View/Template magic.
in my case I had to manually add the templateName property to my view.
What is the reason for
var resourceName = inflector.underscore(resource)
instead of
var resourceName = inflector.camelize(resource, true)
this would solve the above problem no?