I have a backbone.sticket binding attached to a model associated with a mainView
view:
bindings: -> {
".some-class": "someAttribute",
}
and the following template
<div class="some-class"></div>
The attribute populates correctly, but when I attempt to edit someAttribute
in the browser console:
router.mainView.model.attributes.someAttribute = "TEST"
nothing changes in the binding, even though typing
router.mainView.model.attributes.someAttribute
into the browser console returns "TEST"
as expected.
Should I expect the content of the div to be changing in the browser as well?