@@ -176,16 +176,16 @@ include _util-fns
176
176
operations and supporting declaration syntax.
177
177
178
178
The many forms of binding include:
179
- * [Interpolation](guide/template-syntax.html#interpolation)
180
- * [Property Binding](guide/template-syntax.html#property-binding)
181
- * [Event Binding](guide/template-syntax.html#event-binding)
182
- * [Attribute Binding](guide/template-syntax.html#attribute-binding)
183
- * [Class Binding](guide/template-syntax.html#class-binding)
184
- * [Style Binding](guide/template-syntax.html#style-binding)
185
- * [Two-way data binding with ngModel](guide/template-syntax.html#ng-model)
179
+ * [Interpolation](/docs/ts/latest/ guide/template-syntax.html#interpolation)
180
+ * [Property Binding](/docs/ts/latest/ guide/template-syntax.html#property-binding)
181
+ * [Event Binding](/docs/ts/latest/ guide/template-syntax.html#event-binding)
182
+ * [Attribute Binding](/docs/ts/latest/ guide/template-syntax.html#attribute-binding)
183
+ * [Class Binding](/docs/ts/latest/ guide/template-syntax.html#class-binding)
184
+ * [Style Binding](/docs/ts/latest/ guide/template-syntax.html#style-binding)
185
+ * [Two-way data binding with ngModel](/docs/ts/latest/ guide/template-syntax.html#ng-model)
186
186
187
187
Learn more about data binding in the
188
- [Template Syntax](guide/template-syntax.html#data-binding) chapter.
188
+ [Template Syntax](/docs/ts/latest/ guide/template-syntax.html#data-binding) chapter.
189
189
190
190
// #enddocregion d1
191
191
<a id =" decorator" ></a > <a id =" decoration" ></a >
@@ -275,7 +275,7 @@ include _util-fns
275
275
is when we [bootstrap](#bootstrap) the application.
276
276
There are other opportunities to register as well.
277
277
278
- Learn more in the [Dependency Injection](guide/dependency-injection.html) chapter.
278
+ Learn more in the [Dependency Injection](/docs/ts/latest/ guide/dependency-injection.html) chapter.
279
279
:marked
280
280
## Directive
281
281
.l-sub-section
@@ -376,11 +376,11 @@ include _util-fns
376
376
.l-sub-section
377
377
:marked
378
378
A directive property that can be the ***target*** of a
379
- [Property Binding](guide/template-syntax.html#property-binding).
379
+ [Property Binding](/docs/ts/latest/ guide/template-syntax.html#property-binding).
380
380
Data values flow *into* this property from the data source identified
381
381
in the template expression to the right of the equal sign.
382
382
383
- See the [Template Syntax](guide/template-syntax.html#inputs-outputs) chapter.
383
+ See the [Template Syntax](/docs/ts/latest/ guide/template-syntax.html#inputs-outputs) chapter.
384
384
385
385
:marked
386
386
## Interpolation
@@ -397,7 +397,7 @@ include _util-fns
397
397
398
398
:marked
399
399
Learn more about interpolation in the
400
- [Template Syntax](guide/template-syntax.html#interpolation) chapter.
400
+ [Template Syntax](/docs/ts/latest/ guide/template-syntax.html#interpolation) chapter.
401
401
402
402
403
403
<a id =" J" ></a >
@@ -439,7 +439,7 @@ include _util-fns
439
439
* `ngAfterViewChecked` - after every check of a component's view(s)
440
440
* `ngOnDestroy` - just before the directive is destroyed.
441
441
442
- Learn more in the [Lifecycle Hooks](guide/lifecycle-hooks.html) chapter.
442
+ Learn more in the [Lifecycle Hooks](/docs/ts/latest/ guide/lifecycle-hooks.html) chapter.
443
443
// #enddocregion f-l
444
444
445
445
// #docregion m1
@@ -472,7 +472,7 @@ include _util-fns
472
472
Application developers may pick any module library that conforms to the standard
473
473
474
474
Modules are typically named after the file in which the exported thing is defined.
475
- The Angular [DatePipe](https://github.com/angular/angular/blob/master/modules/angular2/src/ common/pipes/date_pipe.ts)
475
+ The Angular [DatePipe](https://github.com/angular/angular/blob/master/modules/@angular/ common/src /pipes/date_pipe.ts)
476
476
class belongs to a feature module named `date_pipe` in the file `date_pipe.ts`.
477
477
478
478
Developers rarely access Angular feature modules directly.
@@ -492,11 +492,11 @@ include _util-fns
492
492
.l-sub-section
493
493
:marked
494
494
A directive property that can be the ***target*** of an
495
- [Event Binding](guide/template-syntax.html#property-binding).
495
+ [Event Binding](/docs/ts/latest/ guide/template-syntax.html#property-binding).
496
496
Events stream *out* of this property to the receiver identified
497
497
in the template expression to the right of the equal sign.
498
498
499
- See the [Template Syntax](guide/template-syntax.html#inputs-outputs) chapter.
499
+ See the [Template Syntax](/docs/ts/latest/ guide/template-syntax.html#inputs-outputs) chapter.
500
500
501
501
.l-main-section
502
502
<a id =" P" ></a >
@@ -525,7 +525,7 @@ include _util-fns
525
525
code-example( language ="html" escape ="html" ) .
526
526
<label >Price: </label >{{product.price | currency}}
527
527
:marked
528
- Learn more in the chapter on [pipes](guide/pipes.html) .
528
+ Learn more in the chapter on [pipes](/docs/ts/latest/ guide/pipes.html) .
529
529
530
530
:marked
531
531
## Provider
@@ -552,7 +552,7 @@ include _util-fns
552
552
and taking other similar actions that cause the application to
553
553
replace one view with another.
554
554
555
- The Angular [Component Router](guide/router.html) is a richly featured mechanism for configuring
555
+ The Angular [Component Router](/docs/ts/latest/ guide/router.html) is a richly featured mechanism for configuring
556
556
and managing the entire view navigation process including the creation and destruction
557
557
of views.
558
558
:marked
@@ -609,15 +609,15 @@ include _util-fns
609
609
the support and continuing guidance of an Angular [Directive](#directive),
610
610
most notably a [Component](#component).
611
611
612
- We write templates in a special [Template Syntax](guide/template-syntax.html).
612
+ We write templates in a special [Template Syntax](/docs/ts/latest/ guide/template-syntax.html).
613
613
614
614
:marked
615
615
## Template Expression
616
616
.l-sub-section
617
617
:marked
618
618
An expression in a JavaScript-like syntax that Angular evaluates within
619
619
a [data binding](#data-binding). Learn how to write template expressions
620
- in the [Template Syntax](guide/template-syntax.html#template-expressions) chapter.
620
+ in the [Template Syntax](/docs/ts/latest/ guide/template-syntax.html#template-expressions) chapter.
621
621
622
622
// #enddocregion t1
623
623
// #docregion t2
@@ -683,8 +683,7 @@ include _util-fns
683
683
684
684
The browser DOM and JavaScript have a limited number
685
685
of asynchronous activities, activities such as DOM events (e.g., clicks),
686
- [promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/
687
- Promise), and
686
+ [promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise), and
688
687
[XHR](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest)
689
688
calls to remote servers.
690
689
0 commit comments