2015-04-19 16:53:18 -04:00
|
|
|
|
|
|
|
.l-main-section
|
|
|
|
h2 onAllChangesDone <span class="type">variable</span>
|
2015-04-22 11:06:51 -04:00
|
|
|
p.location-badge.
|
|
|
|
exported from <a href="/angular2/annotations">angular2/annotations</a>
|
2015-04-19 16:53:18 -04:00
|
|
|
|
|
|
|
:markdown
|
|
|
|
Notify a directive when the bindings of all its children have been changed.
|
|
|
|
|
|
|
|
## Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
@Decorator({
|
|
|
|
selector: '[class-set]',
|
|
|
|
lifecycle: [onAllChangesDone]
|
|
|
|
})
|
|
|
|
class ClassSet {
|
|
|
|
|
|
|
|
onAllChangesDone() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|