You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aio/content/guide/change-log.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ It helps clearly separate app code from setup and configuration files.
39
39
All samples now have a `src/` folder at the project root.
40
40
The former `app/` folder moves under `src/`.
41
41
Read about moving your existing project to this structure in
42
-
<ahref="https://github.com/angular/quickstart#updating-to-a-newer-version-of-the-quickstart-repo"target="_blank"target="Migrating samples/quickstart app to the src folder">
42
+
<ahref="https://github.com/angular/quickstart#updating-to-a-newer-version-of-the-quickstart-repo"target="Migrating samples/quickstart app to the src folder">
43
43
the QuickStart repo update instructions</a>.
44
44
45
45
Notably:
@@ -154,7 +154,7 @@ re-explains `[(ngModel)]` in terms of the basic `[()]` syntax.
154
154
155
155
This change supports ES6 developers and aligns better with typical Angular libraries.
156
156
It does not affect the module's API but it does affect how you load and import it.
157
-
See the <ahref="https://github.com/angular/in-memory-web-api/blob/master/CHANGELOG.md#0113-2016-10-20"target="_blank">change note</a>
157
+
See the <ahref="https://github.com/angular/in-memory-web-api/blob/master/CHANGELOG.md#0113-2016-10-20">change note</a>
158
158
in the `in-memory-web-api` repo.
159
159
160
160
## "Router" _preload_ syntax and _:enter_/_:leave_ animations (2016-10-19)
@@ -201,7 +201,7 @@ This library is also useful to you during early development before you have a se
201
201
202
202
The package name was changed from "angular2-in-memory-web-api" which is still frozen-in-time on npm.
203
203
The new "angular-in-memory-web-api" has new features.
204
-
<ahref="https://github.com/angular/in-memory-web-api/blob/master/README.md"target="_blank">Read about them on github</a>.
204
+
<ahref="https://github.com/angular/in-memory-web-api/blob/master/README.md">Read about them on github</a>.
This plugin transpiles the TypeScript application code,
302
302
bundles lazy loaded `NgModules` separately,
@@ -315,10 +315,10 @@ _Tree shaking_ is a _dead code elimination_ technique that removes entire export
315
315
If a library exports something that the application doesn't import, a tree shaking tool removes it from the code base.
316
316
317
317
Tree shaking was popularized by
318
-
<ahref="http://rollupjs.org/"target="_blank"title="Rollup">Rollup</a>, a popular tool with an ecosystem of
318
+
<ahref="http://rollupjs.org/"title="Rollup">Rollup</a>, a popular tool with an ecosystem of
319
319
plugins for bundling, minification, and uglification.
320
320
Learn more about tree shaking and dead code elmination in
321
-
<ahref="https://medium.com/@Rich_Harris/tree-shaking-versus-dead-code-elimination-d3765df85c80#.15ih9cyvl"target="_blank"title="Tree-shaking and Dead Code Elimination">
321
+
<ahref="https://medium.com/@Rich_Harris/tree-shaking-versus-dead-code-elimination-d3765df85c80#.15ih9cyvl"title="Tree-shaking and Dead Code Elimination">
322
322
this post</a> by rollup-creator, Rich Harris.
323
323
324
324
@@ -349,7 +349,7 @@ You can waste a lot of time and money optimizing something that has no tangible
349
349
You should measure the app's actual behavior when running in the environments that are important to you.
is a third party library, endorsed by Angular, that implements the
337
-
<ahref="https://www.youtube.com/watch?v=VLGCCpOWFFw"target="_blank"title="Video: Rob Wormald on Observables"><b>asynchronous Observable</b></a> pattern.
337
+
<ahref="https://www.youtube.com/watch?v=VLGCCpOWFFw"title="Video: Rob Wormald on Observables"><b>asynchronous Observable</b></a> pattern.
338
338
339
339
All of the Developer Guide samples have installed the RxJS npm package
340
340
because Observables are used widely in Angular applications.
@@ -962,13 +962,13 @@ processes that stream _before_ calling the service.
ensures that the service is called only when the new search term is different from the previous search term.
970
970
971
-
* The <ahref="https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/flatmaplatest.md"target="_blank"title="switchMap operator"><i>switchMap</i></a>
971
+
* The <ahref="https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/flatmaplatest.md"title="switchMap operator"><i>switchMap</i></a>
972
972
calls the `WikipediaService` with a fresh, debounced search term and coordinates the stream(s) of service response.
973
973
974
974
The role of `switchMap` is particularly important.
@@ -1104,11 +1104,11 @@ it substitutes the Angular _in-memory web api_ simulator for the actual XHR back
1104
1104
1105
1105
The in-memory web api is not part of Angular _proper_.
1106
1106
It's an optional service in its own
1107
-
<ahref="https://github.com/angular/in-memory-web-api"target="_blank"title="In-memory Web API"><i>angular-in-memory-web-api</i></a>
1107
+
<ahref="https://github.com/angular/in-memory-web-api"title="In-memory Web API"><i>angular-in-memory-web-api</i></a>
1108
1108
library installed with npm (see `package.json`).
1109
1109
1110
1110
See the
1111
-
<ahref="https://github.com/angular/in-memory-web-api/blob/master/README.md"target="_blank"title='In-memory Web API "README.md"'><i>README file</i></a>
1111
+
<ahref="https://github.com/angular/in-memory-web-api/blob/master/README.md"title='In-memory Web API "README.md"'><i>README file</i></a>
1112
1112
for configuration options, default behaviors, and limitations.
0 commit comments