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.

After including latest emberjs 0.9.7.1 js, I get the error below.

Please, Any help on what below error means?

Error:

Uncaught Error: assertion failed: You cannot provide a template block if you also specified a templateName
share|improve this question

1 Answer

The error seems clear. You cannot set a template block and a template name in the same time. I suppose you have defined something like:

App.MyEmberView = Ember.View.create({

template : Ember.Handlebars.compile('...template string..'),
templateName: 'MyTemplateName'

});
share|improve this answer
Thanks that worked – user1338121 Apr 23 '12 at 8:00
Great, can you please accept the answer. thanks a lot – Bogdan M. Apr 23 '12 at 8:10

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.