matt burns
matt burns

Reputation: 25380

Why do I get the error "Handlebars error: Could not find property 'bind-attr' on object"

I'm working through the getting started guide for Ember.js and as instructed am using the following template code:

<li {{bind-attr class="isCompleted:completed"}}>
  <input type="checkbox" class="toggle">
  <label>{{title}}</label><button class="destroy"></button>
</li>

But I get this error:

Uncaught Error: <(subclass of Ember._MetamorphView):ember316> Handlebars error: Could not find property 'bind-attr' on object <Todos.Todo:ember303:1>.

Upvotes: 1

Views: 1346

Answers (1)

Renan Tomal Fernandes
Renan Tomal Fernandes

Reputation: 10978

You should be using an outdated version of ember, bind-attr was introduced today in 1.0.0.rc8. bindAttr is now deprecated so you should realy use bind-attr

Upvotes: 3

Related Questions