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