diff options
Diffstat (limited to 'docs/content/guide/dev_guide.templates.ngdoc')
| -rw-r--r-- | docs/content/guide/dev_guide.templates.ngdoc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/guide/dev_guide.templates.ngdoc b/docs/content/guide/dev_guide.templates.ngdoc index c349f9e2..2b4e3ff1 100644 --- a/docs/content/guide/dev_guide.templates.ngdoc +++ b/docs/content/guide/dev_guide.templates.ngdoc @@ -2,13 +2,13 @@ @name Developer Guide: Understanding Angular Templates @description -An angular template is the declarative specification that, along with information from the model +An Angular template is the declarative specification that, along with information from the model and controller, becomes the rendered view that a user sees in the browser. It is the static DOM, containing HTML, CSS, and angular-specific elements and angular-specific element attributes. The -angular elements and attributes direct angular to add behavior and transform the template DOM into +Angular elements and attributes direct angular to add behavior and transform the template DOM into the dynamic view DOM. -These are the types of angular elements and element attributes you can use in a template: +These are the types of Angular elements and element attributes you can use in a template: * {@link guide/directive Directive} — An attribute or element that augments an existing DOM element or represents a reusable DOM component - a widget. @@ -20,8 +20,8 @@ curly brace notation `{{ }}` to bind expressions to elements is built-in angular Note: In addition to declaring the elements above in templates, you can also access these elements in JavaScript code. -The following code snippet shows a simple angular template made up of standard HTML tags along with -angular {@link guide/directive directives} and curly-brace bindings +The following code snippet shows a simple Angular template made up of standard HTML tags along with +Angular {@link guide/directive directives} and curly-brace bindings with {@link expression expressions}: <pre> |
