angular-docs-cn/public/docs/js/latest/api/annotations/onAllChangesDone-var.jade

24 lines
465 B
Plaintext

.l-main-section
h2 onAllChangesDone <span class="type">variable</span>
p(class="module") exported from <a href="/angular2/annotations">angular2/annotations</a>
:markdown
Notify a directive when the bindings of all its children have been changed.
## Example:
```
@Decorator({
selector: '[class-set]',
lifecycle: [onAllChangesDone]
})
class ClassSet {
onAllChangesDone() {
}
}
```