(docs) Tour of Heroes - part 1 & 2. Fix links and make them uniform.

closes #375 and #376
This commit is contained in:
Ward Bell 2015-11-14 00:22:26 -08:00
parent 389fb1aa79
commit a3042849c0
2 changed files with 13 additions and 13 deletions

View File

@ -70,9 +70,11 @@ include ../../../../_includes/_util-fns
The browser should refresh and display our title and hero.
The double curly braces tell our app to read the `title` and `hero` properties from the component and render them.
This is the "interpolation" form of one-way data binding;
we can learn more about interpolation in the [Displaying Data chapter](displaying-data).
This is the "interpolation" form of one-way data binding.
.l-sub-section
:marked
Learn more about interpolation in the [Displaying Data chapter](../guide/displaying-data).
:marked
### Hero object
At the moment, our hero is just a name. Our hero needs more properties.
@ -178,7 +180,7 @@ include ../../../../_includes/_util-fns
.l-sub-section
:marked
Learn more about `ng-model` in the [Template Syntax](../guide/template-syntax.html#ng-model)
Learn more about `ng-model` in the [Template Syntax chapter](../guide/template-syntax.html#ng-model)
:marked
Replace the `<input>` with the following HTML
@ -232,12 +234,10 @@ include ../../../../_includes/_util-fns
The `ng-model` directive is one of many Forms directives which happen to be
bundled in a convenient array called `FORM_DIRECTIVES`.
<!-- TODO
.alert.is-helpful
:marked
Learn more about Angular Forms in the [Forms chapter]()
.l-sub-section
:marked
-->
Learn more about Angular Forms in the [Forms chapter](../guide/forms)
:marked
Lets forget about importing `NgModel` and import the `FORM_DIRECTIVES` array instead:
```
import {bootstrap, Component, FORM_DIRECTIVES} from 'angular2/angular2';

View File

@ -123,7 +123,7 @@ include ../../../../_includes/_util-fns
We can reference this variable within the template to access a heros properties.
Learn more about `ng-for` and local template variables in the
[Template Syntax](../guide/template-syntax.html#ng-for) chapter.
[Template Syntax chapter](../guide/template-syntax.html#ng-for).
:marked
With this background in mind, we now insert some content between the `<li>` tags
@ -235,7 +235,7 @@ include ../../../../_includes/_util-fns
Thats the same `hero` variable we defined previously in the `ng-for`.
.l-sub-section
:marked
Learn more about Event Binding in the [Templating Syntax](../guide/template-syntax.html#event-binding) chapter.
Learn more about Event Binding in the [Templating Syntax chapter](../guide/template-syntax.html#event-binding).
:marked
### Add the click handler
Our event binding refers to an `onSelect` method that doesnt exist yet.
@ -316,7 +316,7 @@ include ../../../../_includes/_util-fns
In other words, they give structure to the way Angular displays content in the DOM.
Learn more about `ng-if`, `ng-for` and other structural directives in the
[Template Syntax](../guide/template-syntax.html#directives) chapter
[Template Syntax chapter](../guide/template-syntax.html#directives).
:marked
We learned previously with `NgFor` that we must declare every directive we use in the components `@Component` decorator.
@ -380,7 +380,7 @@ include ../../../../_includes/_util-fns
:marked
Learn more about [ng-class](../guide/template-syntax.html#ng-class)
and [Property Binding](../guide/template-syntax.html#property-binding)
in the Template Syntax chapter
in the Template Syntax chapter.
:marked
We've added yet another new directive to our template that we have to import and declare
in the components `directives` array as weve done twice before.