27 lines
710 B
Plaintext
27 lines
710 B
Plaintext
|
|
.l-main-section
|
|
h2 onAllChangesDone <span class="type">variable</span>
|
|
p.location-badge.
|
|
exported from <a href='../annotations'>angular2/annotations</a>
|
|
defined in <a href="https://github.com/angular/angular/tree/3a0410a/modules/angular2/src/core/annotations_impl/annotations.ts#L1127-L1127">angular2/src/core/annotations_impl/annotations.ts (line 1127)</a>
|
|
|
|
:markdown
|
|
Notify a directive when the bindings of all its children have been checked (whether they have
|
|
changed or not).
|
|
|
|
## Example:
|
|
|
|
```
|
|
@Directive({
|
|
selector: '[class-set]',
|
|
lifecycle: [onAllChangesDone]
|
|
})
|
|
class ClassSet {
|
|
|
|
onAllChangesDone() {
|
|
}
|
|
|
|
}
|
|
```
|
|
|