I am using stickit.js to achieve two way data binding. I am please to know how do I bind stickit with nested object attribute. For an E.g.
var Person = Backbone.Model.extend({
defaults:{
name: {
first: 'James',
last: 'White'
}
}
});
I wonder it is possible to bind a text input some thing like this.
<input type="text" name="firstname" class="first-name"/>
bindings: {
'.first-name': 'name.first'
}