Skip to content

v0.8.3

Choose a tag to compare

@fntz fntz released this 22 Sep 19:05
· 23 commits to master since this release

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) -> 
      # ...