From 3c87611188fc1612fe5d07e245a992b25146f2bf Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 15 Jun 2011 22:32:24 -0700 Subject: docs - various doc fixes --- docs/content/tutorial/step_09.ngdoc | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'docs/content/tutorial/step_09.ngdoc') diff --git a/docs/content/tutorial/step_09.ngdoc b/docs/content/tutorial/step_09.ngdoc index 0d5da766..4aa5c56b 100644 --- a/docs/content/tutorial/step_09.ngdoc +++ b/docs/content/tutorial/step_09.ngdoc @@ -88,46 +88,34 @@ describe('checkmark filter', function() { }) - To run the unit tests, execute the `./scripts/test.sh` script and you should see the following output. - Chrome: Runner reset. .... Total 4 tests (Passed: 4; Fails: 0; Errors: 0) (3.00 ms) Chrome 11.0.696.57 Mac OS: Run 4 tests (Passed: 4; Fails: 0; Errors 0) (3.00 ms) - - # Experiments - * Let's experiment with some of the {@link api/angular.filter built-in angular filters} and add the following bindings to `index.html`: * `{{ "lower cap string" | uppercase }}` * `{{ {foo: "bar", baz: 23} | json }}` * `{{ 1304375948024 | date }}` - * `{{ 1304375948024 | date:"'MM/dd/yyyy @ h:mma" }}` - + * `{{ 1304375948024 | date:"MM/dd/yyyy @ h:mma" }}` * We can also create a model with an input element, and combine it with a filtered binding. Add the following to index.html: - Uppercased: {{ userInput | uppercase }} - - # Summary - Now that you have learned how to write and test a custom filter, go to step 10 to learn how we can use angular to enhance the phone details page further. - -