v0.8.3
Binding one selector with several model attributes:
model.bind(view, {
"#example": [{
from: "description"
}, {
from: "title",
to: "class"
}]
});Set model attributes from view in binding.
Enable logging for developer code.
Now if log_filters is [], then all application logs disabled.
Safe memory handling on event defined in controllers, like:
Controller =
method: () ->
m = new Mode()
v = new Sirius.View("#element")
v.on("selector", "click", (e) ->
# ...