2.4.0 release

This commit is contained in:
Dmitri Granetchi
2015-06-27 01:07:08 +03:00
parent aac6e6fada
commit 3b77b083d4
5 changed files with 5 additions and 5 deletions
+1
View File
@@ -60,6 +60,7 @@ Bind.bind(expr, listener) | executes `listener` if property or method in `expr`
Bind.bindTo(expr, toExpr) | Assign result of `expr` to `toExpr` (NB: if `expr` contains method, then this method will be executed without arguments!). Does NOT invoke `expr` automatically.
Bind.notify(expr, oldValue, newValue) | Manually execute notification about property or method changes (if `expr` is method, then `oldValue` and `newValue` are not required)
Bind.unbind(expr, listener) | Unsubscribe provided `listener` from `expr` changes (NB: if `listener` is not specified, all listeners for binded to this `expr` will be unsubscribed)
Bind.bindAll(obj:IBindable, listener, force) | Bind all properties and methods of `obj` (force mode instantiate all lazy signals). Return unbind callback
Bind.unbindAll(obj:IBindable) | Unbind all properties and methods of `obj` (NB: still can bind new listeners after that!)
## Extended API: