From 139e1b09a94f60b351cc961d8bfd882c0b8ba594 Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Thu, 23 Feb 2012 19:47:58 -0800 Subject: docs(forms): Update API docs for forms - API forms (ng:model + controller, form + controller) - fix some broken links - ng:change, ng:model-instant --- .../content/guide/dev_guide.compiler.understanding_compiler.ngdoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/content/guide/dev_guide.compiler.understanding_compiler.ngdoc') diff --git a/docs/content/guide/dev_guide.compiler.understanding_compiler.ngdoc b/docs/content/guide/dev_guide.compiler.understanding_compiler.ngdoc index e802aee6..8d31b44a 100644 --- a/docs/content/guide/dev_guide.compiler.understanding_compiler.ngdoc +++ b/docs/content/guide/dev_guide.compiler.understanding_compiler.ngdoc @@ -2,8 +2,8 @@ @name Developer Guide: Angular HTML Compiler: Understanding How the Compiler Works @description -The {@link angular.module.ng.$compile compiler} is responsible for applying -{@link angular.module.ng.$compileProvider.directive directives} to the HTML. The directives +The {@link api/angular.module.ng.$compile compiler} is responsible for applying +{@link api/angular.module.ng.$compileProvider.directive directives} to the HTML. The directives extend the behavior of HTML elements and can effect the DOM structure, presentation, and behavior. This allows Angular to teach the browser new tricks. @@ -13,7 +13,7 @@ function. The result of the compilation process is a linking function. The linki can be used on the template clones to quickly bind the directives with the scope. The result of the compilation process is a live view. We say 'live' since any changes to the -model attached to the {@link angular.module.ng.$rootScope.Scope scope} are reflected in the view, +model attached to the {@link api/angular.module.ng.$rootScope.Scope scope} are reflected in the view, and any changes in the view are reflected in the scope. This makes the scope the 'single source of truth'. @@ -21,7 +21,7 @@ Since directives allow attachment of behavior to the HTML, the angular philosoph HTML as Domain Specific Language (DSL) when building an application. For example it may be useful to declare `TabPanel` directive, or `KeyboardShortcut` directive when for an application. -For details on how directives are created see {@link angular.module.ng.$compileProvider.directive +For details on how directives are created see {@link api/angular.module.ng.$compileProvider.directive directives} ## Related Topics -- cgit v1.2.3