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

21 lines
335 B
Plaintext
Raw Normal View History

2015-06-01 22:51:00 -07:00
<h1>onAllChangesDone</h1>
<h2>(const)</h2>
<div>
<p>Notify a directive when the bindings of all its children have been changed.</p>
.l-main-section
h2 Example:
pre(class="prettyprint linenums")
code.
@Directive({
selector: '[class-set]',
lifecycle: [onAllChangesDone]
})
class ClassSet {
onAllChangesDone() {
}
}
</div>