I am using a view to bind data to a contentEditable div
using the code found in the answer to this question: Ember and HTML5 contenteditable property
I have a property a.b.c
that I'm binding it to like so:
{{view App.ContenteditableView valueBinding="a.b.c"}}
This correctly updates a.b.c
when I type in it, and it updates itself when I modify a.b.c
. However, It does not update when I change a
to a different object. That is, the text box needs to update when a
or b
changes, not just when c
changes.
How is this done?