aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
diff options
context:
space:
mode:
authorColin Kahn2013-04-08 16:04:23 -0700
committerIgor Minar2013-04-11 13:55:03 -0700
commit59eb96b9e4aec9268b1b59d045a4fce8f3deea92 (patch)
treeb249bd1109a33c1b9dd83f21240c16284ae80c54 /docs/content/guide
parente142687bcb2dad9cd361e0e7239ca5f77b2bfcf9 (diff)
downloadangular.js-59eb96b9e4aec9268b1b59d045a4fce8f3deea92.tar.bz2
docs(guide/filters): document multiple arguments syntax
Add example of using a filter with that accepts multiple arguments.
Diffstat (limited to 'docs/content/guide')
-rw-r--r--docs/content/guide/dev_guide.templates.filters.using_filters.ngdoc4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/content/guide/dev_guide.templates.filters.using_filters.ngdoc b/docs/content/guide/dev_guide.templates.filters.using_filters.ngdoc
index 9de4c943..f6b3b9ad 100644
--- a/docs/content/guide/dev_guide.templates.filters.using_filters.ngdoc
+++ b/docs/content/guide/dev_guide.templates.filters.using_filters.ngdoc
@@ -19,6 +19,10 @@ You can also pass colon-delimited arguments to filters, for example, to display
123 | number:2
+Use the same syntax for multiple arguments:
+
+ myArray | orderBy:'timestamp':true
+
Here are some examples that show values before and after applying different filters to an
expression in a binding: