From 30d5559d1d9cfd50cfd2b2ffc533d044d4fd6427 Mon Sep 17 00:00:00 2001 From: Ronald Brachetti Date: Fri, 16 Aug 2013 11:46:51 +0200 Subject: [PATCH] improve doc in step 4 to include a proper input field --- docs/content/tutorial/step_04.ngdoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/content/tutorial/step_04.ngdoc b/docs/content/tutorial/step_04.ngdoc index fa8be6ed7ef6..d2235a705cb2 100644 --- a/docs/content/tutorial/step_04.ngdoc +++ b/docs/content/tutorial/step_04.ngdoc @@ -180,6 +180,18 @@ text. * Reverse the sort order by adding a `-` symbol before the sorting value: `` +* Now use a dedicated input field to reverse the sort order. Angular accepts a boolean value as second parameter to the filter (`orderBy:orderProp:orderReverse`), so you should name your input field accordingly + +__`app/index.html`__ +
+...
+    
+...
+
+ # Summary Now that you have added list sorting and tested the app, go to {@link step_05 step 5} to learn