2

I recently updated to Ember 1.8.0 and using view Ember.TextField valueBinding="name" throws a deprecation error. Per the deprecation guide it should be replaced with the input helper, but the following doesn't work

input valueBinding="name"
andorov
  • 4,197
  • 3
  • 39
  • 52

1 Answers1

2

Add a = to the line so that emblem treats it as a helper invocation

= input valueBinding="name"

The same is true for updating view Ember.Select. See the discussion here.

= view 'select'
andorov
  • 4,197
  • 3
  • 39
  • 52