We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7148b2d commit 5bf710bCopy full SHA for 5bf710b
src/ng/directive/ngRepeat.js
@@ -144,6 +144,11 @@
144
* For example: `item in items | filter:x as results` will store the fragment of the repeated items as `results`, but only after
145
* the items have been processed through the filter.
146
*
147
+ * Please note that `as [variable name] is not an operator but rather a part of ngRepeat micro-syntax so it can be used only at the end
148
+ * (and not as operator, inside an expression).
149
+ *
150
+ * For example: `item in items | filter : x | orderBy : order | limitTo : limit as results` .
151
152
* @example
153
* This example initializes the scope to a list of names and
154
* then uses `ngRepeat` to display every person:
0 commit comments