Skip to content

Commit aa844ab

Browse files
committed
fb2773b docs(router): fix wording of hashchange explanation
1 parent 912fcd3 commit aa844ab

746 files changed

Lines changed: 818 additions & 771 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Mon Apr 11 21:21:14 UTC 2016
2-
e6e9d1003c3a54ee97abcc300c78864e60c48b4b
1+
Mon Apr 11 21:26:01 UTC 2016
2+
fb2773b8f33836906e1225076973dae671971386

animate.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

animate/testing.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/angular2-all-testing.umd.dev.js

Lines changed: 4 additions & 5 deletions
Large diffs are not rendered by default.

bundles/angular2-all.umd.dev.js

Lines changed: 4 additions & 5 deletions
Large diffs are not rendered by default.

bundles/angular2-all.umd.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18666,8 +18666,6 @@ return /******/ (function(modules) { // webpackBootstrap
1866618666
* `NgFor` provides several exported values that can be aliased to local variables:
1866718667
*
1866818668
* * `index` will be set to the current loop iteration for each template context.
18669-
* * `first` will be set to a boolean value indicating whether the item is the first one in the
18670-
* iteration.
1867118669
* * `last` will be set to a boolean value indicating whether the item is the last one in the
1867218670
* iteration.
1867318671
* * `even` will be set to a boolean value indicating whether this item has an even index.
@@ -18771,7 +18769,6 @@ return /******/ (function(modules) { // webpackBootstrap
1877118769
}
1877218770
for (var i = 0, ilen = this._viewContainer.length; i < ilen; i++) {
1877318771
var viewRef = this._viewContainer.get(i);
18774-
viewRef.setLocal('first', i === 0);
1877518772
viewRef.setLocal('last', i === ilen - 1);
1877618773
}
1877718774
changes.forEachIdentityChange(function (record) {
@@ -33843,9 +33840,11 @@ return /******/ (function(modules) { // webpackBootstrap
3384333840
if (emitPath.length > 0 && emitPath[0] != '/') {
3384433841
emitPath = '/' + emitPath;
3384533842
}
33846-
// Because we've opted to use All hashchange events occur outside Angular.
33843+
// We've opted to use pushstate and popState APIs regardless of whether you
33844+
// an app uses HashLocationStrategy or PathLocationStrategy.
3384733845
// However, apps that are migrating might have hash links that operate outside
3384833846
// angular to which routing must respond.
33847+
// Therefore we know that all hashchange events occur outside Angular.
3384933848
// To support these cases where we respond to hashchanges and redirect as a
3385033849
// result, we need to replace the top item on the stack.
3385133850
if (change['type'] == 'hashchange') {

bundles/angular2-all.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/angular2-polyfills.js

Lines changed: 60 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/angular2-polyfills.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/angular2.dev.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15050,7 +15050,6 @@ System.register("angular2/src/common/directives/ng_for", ["angular2/core", "angu
1505015050
for (var i = 0,
1505115051
ilen = this._viewContainer.length; i < ilen; i++) {
1505215052
var viewRef = this._viewContainer.get(i);
15053-
viewRef.setLocal('first', i === 0);
1505415053
viewRef.setLocal('last', i === ilen - 1);
1505515054
}
1505615055
changes.forEachIdentityChange(function(record) {

0 commit comments

Comments
 (0)