From 945fc1a4bca1a0856fc909f1d1b8d60d4a5e59bb Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 10 Feb 2014 16:18:47 -0800 Subject: style(guide/concepts): remove ws --- docs/content/guide/concepts.ngdoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index d964da7e..7154da39 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -54,18 +54,18 @@ Try out the Live Preview above, and then let's walk through the example and desc This looks like normal HTML, with some new markup. In Angular, a file like this is called a -"{@link templates template}". When Angular starts your application, it parses and +"{@link templates template}". When Angular starts your application, it parses and processes this new markup from the template using the so called "{@link compiler compiler}". The loaded, transformed and rendered DOM is then called the "view". The first kind of new markup are the so called "{@link directive directives}". -They apply special behavior to attributes or elements in the HTML. In the example above we use the +They apply special behavior to attributes or elements in the HTML. In the example above we use the {@link api/ng.directive:ngApp `ng-app`} attribute, which is linked to a directive that automatically initializes our application. Angular also defines a directive for the {@link api/ng.directive:input `input`} -element that adds extra behavior to the element. E.g. it is able to automatically validate that the entered -text is non empty by evaluating the `required` attribute. +element that adds extra behavior to the element. E.g. it is able to automatically validate that the entered +text is non empty by evaluating the `required` attribute. The {@link api/ng.directive:ngModel `ng-model`} directive stores/updates -the value of the input field into/from a variable and shows the validation state of the input field by +the value of the input field into/from a variable and shows the validation state of the input field by adding css classes. In the example we use these css classes to mark an empty input field with a red border.
-- cgit v1.2.3