Skip to content

Commit 7d9c587

Browse files
author
Martin Field
committed
docs($compile): Explain that post-link functions run in reverse order.
Update the $compile docs to mention the change introduced in angular#4266.
1 parent dcdbcaf commit 7d9c587

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ng/compile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@
115115
* When there are multiple directives defined on a single DOM element, sometimes it
116116
* is necessary to specify the order in which the directives are applied. The `priority` is used
117117
* to sort the directives before their `compile` functions get called. Priority is defined as a
118-
* number. Directives with greater numerical `priority` are compiled first. The order of directives with
118+
* number. Directives with greater numerical `priority` are compiled first. Pre-link functions are also
119+
* run in priority order, but post-link functions are run in reverse order. The order of directives with
119120
* the same priority is undefined. The default priority is `0`.
120121
*
121122
* #### `terminal`

0 commit comments

Comments
 (0)