likui
62332b80da
docs: fix typo in upgrade guide example ( #30428 )
...
An code snippet from a `package.json` file used `script`
rather than `scripts`.
Fixes #30418
PR Close #30428
2019-05-30 13:40:06 -04:00
Shawn Clabough
fd23663a29
docs: fix closing tags in deprecation summary ( #30735 )
...
fix closing tags in "Cannot assign to template variables" section
PR Close #30735
2019-05-30 13:38:54 -04:00
Trotyl Yu
71be1da0ad
docs: fix deprecation information ( #30717 )
...
PR Close #30717
2019-05-30 13:38:34 -04:00
Michael Prentice
6a5cc8f95c
docs: merge duplicated platform-webworker content in Deprecation Guide ( #30651 )
...
fix issue of duplicate anchors/ids
PR Close #30651
2019-05-30 13:36:30 -04:00
Bryce Kolton
2c406fb1a9
docs(elements): move clarification about custom elements ( #30594 )
...
Moved clarification that "custom elements" are a subtype of Web Components to the first use of the term "custom elements"
PR Close #30594
2019-05-30 13:35:15 -04:00
jaideepghosh
24ca8ba7ce
docs: fix the sequence of creating class in HTTP tutorial ( #30566 )
...
For more accurate procedure of creating a class in the "Tour of Heroes" app, updated the sequence of creating one class.
PR Close #30566
2019-05-30 13:32:52 -04:00
Blakenator
af4925f374
docs: clarify usage of using /deep/ in component styles guide ( #30452 )
...
Updated the description regarding the (deprecated) /deep/ pseudo-selector to clarify its propensity to bleed styles across components and its solution
closes #29967
PR Close #30452
2019-05-30 13:32:31 -04:00
Cotton Hou
77578266fd
docs: code sample closing in ivy.md ( #30711 )
...
PR Close #30711
2019-05-30 13:32:11 -04:00
Amadou Sall
1a98d51f98
docs: change wording for more clarity in TypeScript Configuration guide ( #30748 )
...
"You need to do nothing" indicates the presence of an action (the action of doing nothing) while the goal is to tell the user that no action is required from them. I think "You don’t need to do anything" is better suitable in this context.
PR Close #30748
2019-05-30 13:31:23 -04:00
Rob Wormald
48093823cb
docs: add note to platform-webworker deprecation ( #30705 )
...
PR Close #30705
2019-05-28 16:37:58 -07:00
Suguru Inatomi
a36cacae79
docs: remove core.module.ts from file tree in style guide ( #30679 )
...
PR Close #30679
2019-05-28 09:27:49 -07:00
Amadou Sall
1b5096d5a9
docs: add missing preposition ( #30691 )
...
You need do nothing -> You need to do nothing
PR Close #30691
2019-05-28 09:27:23 -07:00
Filipe Silva
875eedbfb0
docs: add default AOT to migrating projects to Ivy ( #30697 )
...
Followup to https://github.com/angular/angular/pull/29380 , https://github.com/angular/angular/pull/30238 , https://github.com/angular/angular-cli/pull/14537 .
PR Close #30697
2019-05-28 09:27:02 -07:00
Minko Gechev
75cdda5f0a
docs: fix typo in a declaration alert ( #30545 )
...
Co-Authored-By: CaerusKaru <caerus.karu@gmail.com>
PR Close #30545
2019-05-28 09:25:10 -07:00
mgechev
6363db89d0
docs: add dynamic import allowed syntax to the deprecation guide ( #30545 )
...
PR Close #30545
2019-05-28 09:25:10 -07:00
Alex Rickabaugh
84dd2679a9
fix(core): require 'static' flag on queries in typings ( #30639 )
...
This commit makes the static flag on @ViewChild and @ContentChild required.
BREAKING CHANGE:
In Angular version 8, it's required that all @ViewChild and @ContentChild
queries have a 'static' flag specifying whether the query is 'static' or
'dynamic'. The compiler previously sorted queries automatically, but in
8.0 developers are required to explicitly specify which behavior is wanted.
This is a temporary requirement as part of a migration; see
https://angular.io/guide/static-query-migration for more details.
@ViewChildren and @ContentChildren queries are always dynamic, and so are
unaffected.
PR Close #30639
2019-05-24 16:55:00 -04:00
Kapunahele Wong
be0bc799f3
docs: drop coding conventions from style guide ( #30334 )
...
PR Close #30334
2019-05-24 13:46:11 -04:00
Michael Hladky
0d23cedab8
docs: add Michael Hladky to GDE resources ( #30596 )
...
PR Close #30596
2019-05-24 13:40:33 -04:00
Kara Erickson
911a8160ec
docs(core): add more info to static query guide ( #30646 )
...
PR Close #30646
2019-05-23 22:14:49 -07:00
Kara Erickson
250887244e
docs(core): update deprecations guide ( #30644 )
...
PR Close #30644
2019-05-23 16:25:48 -07:00
Kara Erickson
9b035e4038
docs(core): add migration guide for static queries ( #30644 )
...
PR Close #30644
2019-05-23 16:25:48 -07:00
Alex Rickabaugh
ccc76f7498
feat(platform-webworker): deprecate platform-webworker ( #30642 )
...
DEPRECATION:
platform-webworker has been around since the initial release of Angular
version 2. It began as an experiment to leverage Angular's rendering
architecture and try something different: to run an entire web application
in a web worker.
We've learned a lot from this experiment, and have come to the conclusion
that pushing entire applications to run in a web worker is not a recipe for
success for most applications. This is due to a number of unresolved issues,
including:
* Poor or non-existent support for web worker APIs in web crawlers/indexers.
* Poor support in build and bundling tooling.
As a result, as of Angular version 8, we are deprecating the
`platform-webworker` APIs in Angular. This consists of both NPM packages,
`@angular/platform-webworker` and `@angular/platform-webworker-dynamic`.
Going forward, we will focus our efforts related to web workers around their
primary use case of offloading CPU-intensive but not critical work.
FW-1339 #resolve
PR Close #30642
2019-05-23 15:09:48 -07:00
Alex Rickabaugh
f310a5960e
feat(core): deprecate integration with the Web Tracing Framework (WTF) ( #30642 )
...
DEPRECATION:
Angular previously has supported an integration with the Web Tracing
Framework (WTF) for performance testing of Angular applications. This
integration has not been maintained and likely does not work for the
majority of Angular applications today. As a result, we are deprecating
the integration in Angular version 8.
This deprecation covers the following public APIs:
* `WtfScopeFn`
* `wtfCreateScope`
* `wtfStartTimeRange`
* `wtfEndTimeRange`
* `wtfLeave`
FW-1338 #resolve
PR Close #30642
2019-05-23 15:09:48 -07:00
Kapunahele Wong
b5c893916d
docs: add v8 deprecations ( #30598 )
...
PR Close #30598
2019-05-23 13:31:13 -07:00
Stephen Fluin
d4e6263453
docs: update simple stackblitz deployment instructions ( #30465 )
...
PR Close #30465
2019-05-22 16:29:44 -07:00
Judy Bogart
2cd5294394
docs: add new cli builder api guide ( #29964 )
...
PR Close #29964
2019-05-22 16:19:54 -07:00
jenniferfell
3c548189b1
docs: update node and typescript versions mentioned in docs ( #30601 )
...
PR Close #30601
2019-05-22 16:17:41 -07:00
Judy Bogart
ae91f45b27
docs: update file structure and workspace config for v8 ( #30595 )
...
PR Close #30595
2019-05-22 11:20:18 -07:00
jenniferfell
0f5da82cfd
docs: deprecations summary fix api heading level, remove inject, add index by version ( #30400 )
...
PR Close #30400
2019-05-21 13:51:26 -07:00
Sander Vanneste
7c0667d215
docs: delete double dashes on ng command in testing guide ( #30551 )
...
Closes #30550
PR Close #30551
2019-05-21 13:12:47 -07:00
Stewart Rand
a50c1bb7bc
docs: fix spelling of 'its' ( #30455 )
...
PR Close #30455
2019-05-21 13:07:13 -07:00
Brandon
c9f5f3d802
docs: add section to upgrade guide on lazy loading AngularJS ( #30541 )
...
PR Close #30541
2019-05-21 13:06:01 -07:00
Kara Erickson
a96976e88f
fix(core): remove deprecated `TestBed.deprecatedOverrideProvider` API ( #30576 )
...
BREAKING CHANGE
In PR #19558 , we fixed a bug in `TestBed.overrideProvider` where
eager providers were not being instantiated correctly. However,
it turned out that since this bug had been around for quite a bit,
many apps were relying on the broken behavior where the providers
would not be instantiated. To assist in the transition, the
`TestBed.deprecatedOverrideProvider` method was temporarily
introduced to mimic the old behavior so that apps would have a
longer time period to migrate their code.
2 years and 3 versions later, it is time to remove the temporary
method. This commit removes `TestBed.deprecatedOverrideProvider`
altogether. Any usages of `TestBed.deprecatedOverrideProvider`
should be replaced with `TestBed.overrideProvider`. This may mean
that providers that were not created before will now be instantiated,
which could mean that your tests need to provide more mocks or stubs
for the dependencies of the newly instantiated providers.
PR Close #30576
2019-05-21 12:37:17 -07:00
Brandon
e1af6e3c70
docs: use dynamic import syntax in examples using lazy loading ( #30563 )
...
PR Close #30563
2019-05-21 09:09:35 -07:00
Manohar Reddy Poreddy
e946594bf8
docs: move instructions to see changes after the error is fixed in the tutorial ( #30529 )
...
docs: List only appears after the error is fixed
When the error happens, the list is not displayed too. Once the error is removed, the heroes list appears, so we can click and see the details.
PR Close #30529
2019-05-21 09:03:49 -07:00
janith
c79bffaacb
docs: remove gender prefixes from examples ( #29972 )
...
PR Close #29972
2019-05-20 16:42:59 -07:00
Fux, Etienne
e58e5ec6a6
docs: improve consistency of style guide example ( #30504 )
...
The text for entry Style 04-10 of the style guide talks about
FilterTextService however, the example folder structure has the inversed
filename.
PR Close #30504
2019-05-20 16:42:16 -07:00
Ben Lesh
d7eaae6f22
refactor(ivy): Move instructions back to ɵɵ ( #30546 )
...
There is an encoding issue with using delta `Δ`, where the browser will attempt to detect the file encoding if the character set is not explicitly declared on a `<script/>` tag, and Chrome will find the `Δ` character and decide it is window-1252 encoding, which misinterprets the `Δ` character to be some other character that is not a valid JS identifier character
So back to the frog eyes we go.
```
__
/ɵɵ\
( -- ) - I am ineffable. I am forever.
_/ \_
/ \ / \
== == ==
```
PR Close #30546
2019-05-20 16:37:47 -07:00
jenniferfell
1c3ee41902
docs: move old quick start content into new local setup guide ( #29651 )
...
PR Close #29651
2019-05-20 10:16:23 -07:00
Brandon Roberts
661a57d9e2
docs: update docs example dependencies to version 8 ( #30385 )
...
PR Close #30385
2019-05-17 14:16:55 -07:00
Kamil Myśliwiec
9d5abfb3d9
docs: add kamil mysliwiec to GDE resources ( #30508 )
...
PR Close #30508
2019-05-17 13:32:44 -07:00
Brandon
bf94932c7a
docs: add link to location upgrade config ( #30331 )
...
PR Close #30331
2019-05-16 11:47:16 -07:00
Brandon Roberts
f5127f601d
docs: add section to upgrade guide on using the unified location service ( #30331 )
...
The LocationUpgradeModule provides a unified way of handling URL updates
across AngularJS and Angular.
PR Close #30331
2019-05-16 11:47:16 -07:00
TwoDCube
79903b1842
docs: fix typo in animations doc ( #30457 )
...
PR Close #30457
2019-05-15 14:26:11 -07:00
Piotr Tomiak
0051ddf0f3
docs: correct types in transform method to match specification. ( #29812 )
...
PR Close #29812
2019-05-15 14:24:20 -07:00
Jimmy Kasprzak
3a8f74e392
docs: fix example "testing" app compilation ( #30427 )
...
PR Close #30427
2019-05-15 14:12:22 -07:00
Vincent Guo
8555016eec
docs: fix the payload in event-binding sample code ( #30429 )
...
after reading the context. there are some clues to infer the payload should be the `item`, not `item.name`.
1. EventEmitter<Item>.
2. the desc say that:
The component defines a deleteRequest property that returns an EventEmitter. When the user clicks delete, the component invokes the delete() method, telling the EventEmitter to emit an **Item** object.
PR Close #30429
2019-05-15 14:12:02 -07:00
Ben Lesh
cf86ed7b29
refactor(ivy): migrate ɵɵ prefix back to Δ ( #30362 )
...
Now that issues are resolved with Closure compiler, we can move back to our desired prefix of `Δ`.
PR Close #30362
2019-05-14 16:52:15 -07:00
Judy Bogart
f9fb921f91
docs: update ivy preview page ( #30355 )
...
PR Close #30355
2019-05-14 12:17:26 -07:00
D3T0N8R
877b2285f9
docs: change reference to jQuery programmers ( #30386 )
...
The section on Data Binding makes a reference to "any experienced jQuery programmer" which is a bit too narrow since there are also programmers that write their front end in pure JavaScript.
PR Close #30386
2019-05-13 10:49:26 -07:00
dsychin
44cf981407
docs: remove mention of chrome 41 from differential loading ( #30390 )
...
PR Close #30390
2019-05-10 11:55:12 -07:00
alimemonzx
d750b1e10d
docs: fix filename in example headers for provider guides ( #29889 )
...
PR Close #29889
2019-05-09 11:27:00 -07:00
Alan Agius
f26f036286
docs: remove reference to e2e applications ( #30324 )
...
This is no longer applicable in angular version 8.
PR Close #30324
2019-05-09 11:23:05 -07:00
陈旭10045812
3b551e0fcd
docs(aio): add awade jigsaw into resources ( #30204 )
...
PR Close #30204
2019-05-07 13:13:22 -07:00
arjunyel
4f055d4257
refactor: remove tslint no-use-before-declare rule ( #30288 )
...
PR Close #30288
2019-05-07 10:25:36 -07:00
Richard Lea
d6538eb2fd
docs: fix naming miss and improve anchor reference in router guide ( #30225 )
...
Signed-off-by: Richard Lea <chigix@zoho.com>
PR Close #30225
2019-05-06 11:48:05 -07:00
Kapunahele Wong
0926119977
docs: add explanation on what lazy loading is ( #29667 )
...
PR Close #29667
2019-05-06 10:16:58 -07:00
Raja Rama Mohan Thavalam
bf73fb7420
docs: update Wikipedia link to Polyfill description ( #30214 )
...
PR Close #30214
2019-05-06 09:20:14 -07:00
Max Kramer
1ec092ba32
docs: fix example header in singleton services guide to match styleguide ( #30097 )
...
Removes the ".0" from code header, as that doesn't match the
recommended code style for service files names.
fixes #29862
PR Close #30097
2019-05-06 09:19:36 -07:00
Brad Green
7ec8806dc5
docs: explicitly state purpose of components ( #29879 )
...
Current description is vague. I'd love to see this doc explicitly state that components are for reusable sets of UI features instead.
PR Close #29879
2019-05-01 13:38:13 -07:00
jenniferfell
28a1caa0ed
docs: add in-page nav, change title to match left nav better ( #30093 )
...
PR Close #30093
2019-04-29 13:23:14 -07:00
Judy Bogart
f015dbe1ba
docs: add architect terms ( #26963 )
...
PR Close #26963
2019-04-29 13:22:20 -07:00
Uday Vunnam
54d4105264
docs: update readme. sentence correction. ( #30136 )
...
PR Close #30136
2019-04-26 16:36:53 -07:00
Suraj Poddar
8a60239ae7
docs(docs-infra): fix typo in workspace-config.md file ( #30108 )
...
Fixed typo in 'Project asset configuration' section inside workdspace-config.md
PR Close #30108
2019-04-26 16:33:03 -07:00
Filipe Silva
876ceb3688
docs: remove note about ivy being coupled to dynamic import ( #30151 )
...
PR Close #30151
2019-04-26 11:08:51 -07:00
Max Kramer
933772ed69
docs(aio): clarify "next to" as "same directory" ( #30099 )
...
closes #29337
PR Close #30099
2019-04-25 17:20:29 -07:00
Peter Johan Salomonsen
6200732e23
feat(service-worker): support bypassing SW with specific header/query param ( #30010 )
...
Add support for bypassing the ServiceWorker for a request by using the
ngsw-bypass header or query parameter.
Fixes #21191
PR Close #30010
2019-04-25 13:09:44 -07:00
George Kalpakas
282167a37f
build(docs-infra): upgrade tslint to 5.15.0 and codelyzer to 5.0.0 ( #29926 )
...
This commit also changes the `tslint.json` config file to (reasonably
closely) match what the cli would generate for a new app.
PR Close #29926
2019-04-25 12:32:49 -07:00
George Kalpakas
8f120aff33
refactor(service-worker): DRY up SW registration logic ( #21842 )
...
PR Close #21842
2019-04-25 12:29:58 -07:00
JiaLi.Passion
4cfba58072
feat(service-worker): allow configuring when the SW is registered ( #21842 )
...
Fixes #20970
PR Close #21842
2019-04-25 12:29:58 -07:00
George Kalpakas
2dc4e8801c
ci(docs-infra): loosen conditions to reduce flakiness on CI ( #29757 )
...
The exact messages depend on the timing of several events and may vary
between runs. This occasionally causes flakes on CI.
This commit reduces the risk of flakes by loosen the conditions to only
check for what we actually care about.
Fixes #29544
PR Close #29757
2019-04-25 10:58:12 -07:00
George Kalpakas
9914998e76
ci(docs-infra): wait for conditions to reduce flakiness on CI ( #29757 )
...
PR Close #29757
2019-04-25 10:58:12 -07:00
George Kalpakas
00866186a7
refactor(docs-infra): switch from promises to async/await in tests ( #29757 )
...
PR Close #29757
2019-04-25 10:58:12 -07:00
jenniferfell
9e85d7ff0b
docs: fix link from release info to deprecations ( #26733 )
...
PR Close #26733
2019-04-25 10:55:43 -07:00
jenniferfell
28e6aa723a
docs: change anchor for removed section ( #26733 )
...
PR Close #26733
2019-04-25 10:55:43 -07:00
Igor Minar
bb47ad295a
docs: navigation and org changes, misc edits ( #26733 )
...
Co-Authored-By: jenniferfell <jenniferfell.sf@gmail.com>
PR Close #26733
2019-04-25 10:55:43 -07:00
jenniferfell
169d51beb8
docs: changed wording for loadChildren per reviewer comments on PR ( #26733 )
...
PR Close #26733
2019-04-25 10:55:43 -07:00
jenniferfell
8b0ebe17b3
docs: clean up deprecation summary, remove outdated information and notes ( #26733 )
...
PR Close #26733
2019-04-25 10:55:43 -07:00
Alex Eagle
a9379e0ed2
docs(bazel): add aio/guide/bazel ( #30042 )
...
PR Close #30042
2019-04-24 17:01:59 -07:00
Filipe Silva
6da19599de
docs: copy edits to Ivy opt-in ( #29955 )
...
PR Close #29955
2019-04-24 17:00:55 -07:00
Filipe Silva
46f547499d
docs: remove enumeration of one in Ivy opt-in ( #29955 )
...
PR Close #29955
2019-04-24 17:00:55 -07:00
Filipe Silva
2864108510
docs: remove lazy route step from Ivy opt-in ( #29955 )
...
PR Close #29955
2019-04-24 17:00:55 -07:00
Filipe Silva
e95f460f39
docs: remove aot step from Ivy opt-in ( #29955 )
...
PR Close #29955
2019-04-24 17:00:54 -07:00
jenniferfell
75a23ab623
docs: update deprecation practices, update release date, edits for readability and consistency ( #29644 )
...
PR Close #29644
2019-04-24 17:00:23 -07:00
Andrew Kushnir
d0ca7c792d
docs: add Andrew Kushnir to Angular team ( #30045 )
...
PR Close #30045
2019-04-24 11:04:13 -07:00
jenniferfell
8ca208ff59
docs: remove outdated docs change log ( #26102 )
...
PR Close #26102
2019-04-23 15:19:10 -07:00
Judy Bogart
089bfdf95f
docs: rewrite cli analytics config ( #29821 )
...
PR Close #29821
2019-04-23 15:13:49 -07:00
Trevor Karjanis
9873356bd0
docs: fix grammatical errors in the guides and API documentation ( #29928 )
...
Fix grammatical errors in the DI and HttpClient guides as well as the Resolve API documentaiton.
There is no associated issue.
PR Close #29928
2019-04-22 17:32:30 -07:00
Brandon
54289aec2d
docs: cleanup code snippets for getting started example app ( #29837 )
...
PR Close #29837
2019-04-22 16:31:04 -07:00
Brandon Roberts
57c8f78c8f
docs: add Differential Loading section to deployment guide ( #29932 )
...
PR Close #29932
2019-04-22 16:30:20 -07:00
Kenny Schank
ceea0b418c
docs: fix typo in routing section of Tour of Heroes ( #29961 )
...
PR Close #29961
2019-04-22 11:18:44 -07:00
iliesaithamouda
f730c72318
docs: change doc for address form group in reactive forms guide ( #30007 )
...
Closes #29925
PR Close #30007
2019-04-22 11:17:37 -07:00
Suguru Inatomi
5a07aa484d
docs: add ng-japan 2019 event ( #30021 )
...
PR Close #30021
2019-04-22 08:45:44 -07:00
Ahsan Ayaz
d1b7d36646
docs: add Muhammad Ahsan Ayaz to GDE contributors group ( #29838 )
...
PR Close #29838
2019-04-18 18:18:16 -07:00
jenniferfell
45c2429d30
docs: create skeleton deprecation summary to land so other writers can contribute in parallel ( #29979 )
...
PR Close #29979
2019-04-18 13:50:22 -07:00
Brad Green
c0ec1d63ff
docs: update product-alerts.component.1.ts ( #29917 )
...
Make the example match the generated output seen in StackBlitz as shown https://next.angular.io/getting-started#input step 2 "Open product-alerts.component.ts."
PR Close #29917
2019-04-17 16:49:21 -07:00
hpawe01
bd3164f88a
docs: use correct values from `code-example` in i18n ( #29920 )
...
PR Close #29920
2019-04-16 10:31:16 -07:00
Jurgen Van de Moere
b3edf494a4
docs(service-worker): fix small typo in devops guide ( #29866 )
...
PR Close #29866
2019-04-16 10:30:52 -07:00
George Kalpakas
d1d0f4a1ad
fix(docs-infra): add missing ng-conf image ( #29902 )
...
As of b9fead7f8
, the image is referenced in `announcements.json`, but it
was already removed (as it wasn't used at the time) in 7f905da33
.
PR Close #29902
2019-04-15 09:12:58 -07:00
Alex Eagle
f98093a30d
docs(aio): add missing mentors for collaborators ( #29142 )
...
Also improve the presentation of the org chart
PR Close #29142
2019-04-11 08:06:18 -07:00
Alex Eagle
77aff0b7bb
docs(aio): add globegitter to Angular collaborators ( #29142 )
...
PR Close #29142
2019-04-11 08:06:17 -07:00
Alan Agius
17c4ed9d0f
docs: update path mappings and exports ( #29810 )
...
1) Path mappings are to be added in the workspace tsconfig files, hence the path needs to be `./` and not `../`
2) Fix export symbol as it cannot contain `-`
Fixes #29807
PR Close #29810
2019-04-10 12:17:31 -07:00
Santosh Yadav
8c37cdc38a
docs: redirect to schematics-for-libraries ( #29780 )
...
Fixes #29778
PR Close #29780
2019-04-10 12:16:46 -07:00
Trevor Karjanis
ad642e31cd
docs: fix grammatical errors in the style guide ( #29769 )
...
Fix grammatical errors in the Style Guide.
There is no associated issue.
PR Close #29769
2019-04-10 12:16:29 -07:00
Trevor Karjanis
09975120fd
docs: fix a grammatical error in the building and serving documentation ( #29768 )
...
Fix a grammatical error in the building and serving documentation.
There is no associated issue.
PR Close #29768
2019-04-10 12:16:14 -07:00
hateonion
b0eefc872e
docs: fix incorrect header on custom event docs ( #29784 )
...
PR Close #29784
2019-04-09 12:23:59 -07:00
Renan Montebelo
4f0110e75a
docs(core): DI module-level info fix ( #29756 )
...
PR Close #29756
2019-04-09 12:23:43 -07:00
jenniferfell
f24fd56ed1
docs: update release schedule and examples of release numbers ( #29714 )
...
PR Close #29714
2019-04-09 12:23:27 -07:00
jenniferfell
411c505dae
docs: update authors style guide to highlight related guidelines and position these guidelines ( #28481 )
...
PR Close #28481
2019-04-09 12:23:09 -07:00
Andrew Seguin
632847d34d
docs: typo fix, change "insure" to "ensure" ( #29737 )
...
PR Close #29737
2019-04-08 17:18:47 -07:00
Judy Bogart
0c47dc0466
docs: add universal terms to glossary ( #28492 )
...
PR Close #28492
2019-04-04 14:26:36 -07:00
musou1500
eaa49bdc04
docs: fix typo in getting-started/routing ( #29676 )
...
PR Close #29676
2019-04-04 10:51:44 -07:00
zverbeta
afd2417ecd
docs: add ibm carbon ui library ( #29706 )
...
PR Close #29706
2019-04-04 10:50:05 -07:00
Dave
c7ff728723
docs: add angular.de to the workshops page ( #28856 )
...
undo unrelated whitespace change
PR Close #28856
2019-04-03 15:39:20 -07:00
Maxime Lafarie
d96f62fdc4
docs: add ngx-smart-modal to doc resources ( #29661 )
...
PR Close #29661
2019-04-03 15:36:29 -07:00
Stephen Fluin
b9fead7f83
docs: update announcements for home page ( #29671 )
...
Updated dates, add tracking to links
PR Close #29671
2019-04-03 15:36:03 -07:00
Vani
ddb935fac7
docs: update examples region to match the description in the guide ( #29259 )
...
PR Close #29259
2019-04-02 16:09:19 -07:00
Kara
630aaa6bfb
docs: add Deborah Kurata to Trusted Collaborators ( #29605 )
...
This commit adds Deborah to the Trusted Collaborators list, so she will appear in the Collaborators list on angular.io.
PR Close #29605
2019-04-02 15:53:48 -07:00
Emilie Huet
cbd5d28f71
docs: add info regarding injecting custom pipes ( #28291 )
...
Indicate that a pipe also needs to be included in the providers array
PR Close #28291
2019-04-02 10:38:36 -07:00
cexbrayat
9e4c0bd815
docs: fix typos in getting-started ( #29665 )
...
PR #27684 introduced a new getting-started guide and a few typos slipped through the review.
PR Close #29665
2019-04-02 10:25:59 -07:00
Filipe Silva
8bfaaf164a
docs: add Web Worker guide ( #29633 )
...
Followup to https://github.com/angular/angular-cli/pull/13700
PR Close #29633
2019-04-01 15:31:47 -07:00
Tim Deschryver
abf69dec5b
docs: fix typos in getting started ( #29640 )
...
PR Close #29640
2019-04-01 15:06:10 -07:00
Judy Bogart
d7e5535d00
docs: add custom-element ref to library overview ( #28476 )
...
PR Close #28476
2019-04-01 12:04:06 -07:00
Martin Ockovsky
9cd90532c1
docs: add missing window key shortcut to language service guide ( #29613 )
...
PR Close #29613
2019-04-01 11:28:12 -07:00
Jorge Cano
ff2a55f14f
docs: update Jorge Cano GDE bio ( #29622 )
...
PR Close #29622
2019-04-01 11:26:40 -07:00
George Kalpakas
cd6581e4f0
docs: use smaller image for Jason Bedard (since it was already available) ( #29601 )
...
PR Close #29601
2019-04-01 11:24:42 -07:00
Filipe Silva
8a13f6b278
docs: remove ngcc steps from Ivy opt-in ( #29506 )
...
PR Close #29506
2019-04-01 11:01:14 -07:00
Filipe Silva
ee7c5ed620
docs: add Ivy lazy load opt-in ( #29506 )
...
PR Close #29506
2019-04-01 11:01:14 -07:00
Amit Chaurasia
6759aa68dc
docs: added complete path to the spec file ( #29621 )
...
PR Close #29621
2019-04-01 10:54:30 -07:00
George Kalpakas
2b6e107b1e
build(docs-infra): add check to ensure all contributor pictures exist ( #29553 )
...
PR Close #29553
2019-03-29 11:01:45 -07:00
George Kalpakas
6a55ba28b2
docs: add Sam Julien to GDE group as well ( #29553 )
...
PR Close #29553
2019-03-29 11:01:45 -07:00
George Kalpakas
33524d9d9c
feat(docs-infra): support contributors belonging to multiple groups ( #29553 )
...
PR Close #29553
2019-03-29 11:01:45 -07:00
George Kalpakas
4b2407a4db
docs: change heading of contributors page to avoid confusion (Collaborators --> Contributors) ( #29553 )
...
Now that "Collaborators" is a separate group in the contributors page,
having "Angular Collaborators" as the heading of the page (which also
contains the "Angular" and "GDE" groups) is confusing.
Changing the title to "Angular Contributors" to avoid confusion.
PR Close #29553
2019-03-29 11:01:45 -07:00
George Kalpakas
ed19464be0
docs: change contributor group name (Collaborator --> Collaborators) ( #29553 )
...
The name of the group also serves as the group tab's title in the docs
app and having "Collaborator" (singular) as a title for a list of people
didn't read well.
Changing th group name (and thus tab title) to "Collaborators" (plural).
PR Close #29553
2019-03-29 11:01:45 -07:00
Brandon
12c9bd257d
docs: add new getting started guide ( #27684 )
...
PR Close #27684
2019-03-29 10:47:37 -07:00
Vani
22b89ea58a
docs: move text that mention what is expected to fail up higher into the section ( #27329 )
...
PR Close #27329
2019-03-29 10:30:28 -07:00
Kapunahele Wong
e8921365b7
docs: remove coremodule references ( #28434 )
...
PR Close #28434
2019-03-29 10:29:51 -07:00
Jun
009acd2a6c
docs(service-worker): add info about no network request for performance strategy ( #29288 )
...
PR Close #29288
2019-03-29 10:28:46 -07:00
javatutorials2016
71daa11357
docs: add note about ngModel usage in structural directives guide ( #29522 )
...
When I tried one of the examples provided in the documention, encountered the " Can't bind to 'ngModel' since it isn't a known property of 'select' ” error. So to resolve it I imported the FormsModule in ngModule. If it is mentioned in the documentation, it would be handy for the beginners to try and learn. Thanks for considering.
Duplicate of pull Request# 29206, As I encountered few issues after multiple authors corrected, So I am creating the new pull request
PR Close #29522
2019-03-29 10:26:15 -07:00
Judy Bogart
57f7996b6d
docs: add asset config details ( #28214 )
...
PR Close #28214
2019-03-28 15:31:24 -07:00
Judy Bogart
27ba4ac982
docs: reorg deployment guide with serve-from-disk info from CLI story ( #28217 )
...
PR Close #28217
2019-03-28 15:30:50 -07:00
Judy Bogart
6c76dfc568
docs: copy-edit ivy opt-in page ( #29507 )
...
PR Close #29507
2019-03-28 15:29:49 -07:00
JoostK
d46a7c8468
docs: add Joost Koehoorn to Angular collaborators ( #29554 )
...
PR Close #29554
2019-03-28 10:12:01 -07:00
Judy Bogart
f8c7c3c09c
docs: add schematic details and links to config page ( #27272 )
...
PR Close #27272
2019-03-27 09:58:24 -07:00
Amit Chaurasia
ac3ce0d793
docs: replaced hero with heroes component property ( #29487 )
...
PR Close #29487
2019-03-27 09:53:51 -07:00
Santosh Yadav
6c33058856
docs: add library structure ( #29376 )
...
Fixes #29225
PR Close #29376
2019-03-27 09:42:54 -07:00
Bonnie Brennan
50fb629012
docs: add Bonnie to GDE page ( #29432 )
...
PR Close #29432
2019-03-27 09:42:28 -07:00
javatutorials2016
fea2a0f2ac
docs: update Shortcut keys for Developer tools in chrome Browser on Windows machine ( #29485 )
...
PR Close #29485
2019-03-27 09:41:39 -07:00
javatutorials2016
e0dcd11a49
docs: update Shortcut keys for Developer tools in chrome Browser on Windows platform ( #29485 )
...
PR Close #29485
2019-03-27 09:41:39 -07:00
George Kalpakas
06056b4a6d
docs: add Sam Julien to `Collaborator` group ( #29528 )
...
PR Close #29528
2019-03-27 09:40:51 -07:00
Ricky Roller
531fa00992
docs: fix typo in rxjs guide example ( #29446 )
...
PR Close #29446
2019-03-26 12:49:46 -07:00
davidlsharp1
b3102b9de1
docs: changing "struture" to "structure" ( #29497 )
...
PR Close #29497
2019-03-25 09:21:10 -07:00
Amadou Sall
7baf45fe88
docs: fix minor typo in testing.md ( #29464 )
...
PR Close #29464
2019-03-22 10:59:21 -07:00
Siddharth Ajmera
cfa6e8e008
docs: add Siddharth Ajmera to GDE resources ( #28456 )
...
PR Close #28456
2019-03-21 15:57:16 -07:00
Dave
02debebcff
docs: add NG-DE 2019 to events page ( #29079 )
...
PR Close #29079
2019-03-21 15:55:15 -07:00
Alan Agius
ed8d60d060
docs: add app shell guide ( #28591 )
...
PR Close #28591
2019-03-21 15:54:26 -07:00
Brandon
dfcf759e33
docs: drop Coding Conventions section from style guide ( #29331 )
...
Closes #24153
PR Close #29331
2019-03-21 15:40:20 -07:00
luixaviles
afe3e72601
docs: add Luis Aviles to GDE resources ( #29405 )
...
PR Close #29405
2019-03-20 19:06:23 -04:00
Brandon
38c778e371
docs: add docs team to Angular Team section on collaborators page ( #29396 )
...
PR Close #29396
2019-03-20 13:40:18 -04:00
Justin Schwartzenberger
9a364a82fb
docs: add Justin Schwartzenberger to GDE page ( #29401 )
...
PR Close #29401
2019-03-20 13:11:31 -04:00
Hans Larsen
aae6f7b40b
docs: add usage analytics gathering guide to aio ( #29382 )
...
This guide is to help third party administrators to collect usage analytics
gathering for their own users with their own Google Analytics dashboard. It
is not meant for a generic audience.
PR Close #29382
2019-03-19 20:12:26 -04:00
Hans Larsen
5f50562be5
docs: add usage notice for CLI analytics ( #29382 )
...
This is going to be linked to users who want to know more about
analytics.
PR Close #29382
2019-03-19 20:12:26 -04:00
Judy Bogart
bc99b774ba
docs: add schematics guide ( #28343 )
...
PR Close #28343
2019-03-19 15:47:14 -04:00
Kapunahele Wong
c0ad9e104d
docs: edit $any() section and add example in Template Syntax ( #28157 )
...
PR Close #28157
2019-03-19 13:19:17 -04:00
Robert Tyree
4a665ca50b
docs: fix typo in section introduction ( #29394 )
...
PR Close #29394
2019-03-19 13:09:07 -04:00
Alan
bf2db12fc9
docs: update universal project structure ( #29332 )
...
In version 8 the project structure is slightly different
PR Close #29332
2019-03-15 14:08:23 -04:00
Eduard
dfb220ea6b
docs: fix a typo in creating libraries guide ( #29154 )
...
PR Close #29154
2019-03-15 12:43:15 -04:00
Alex Eagle
f7738ad8d6
fix(aio): add jbedard to Angular Collaborators ( #29141 )
...
PR Close #29141
2019-03-15 00:14:12 -04:00
Brandon Roberts
8ed13a37f0
docs: clarify commands to integrate routing ( #26530 )
...
PR Close #26530
2019-03-14 18:26:53 -04:00
Brandon
f50928f5b7
docs: remove configuration instructions at the top of the i18n guide ( #29313 )
...
The instructions lead you to think you run this step before setting
up your locale. The command is mentioned further in the guide after
setup is complete.
Closes #26052
PR Close #29313
2019-03-14 16:58:02 -04:00
Greg Magolan
e76cf8c775
build: fix aio test ( #29210 )
...
PR Close #29210
2019-03-14 11:38:12 -04:00
Brandon
2064508876
docs: fix redirect with secondary outlet in router guide example ( #29267 )
...
The URL wasn't be parsed into a UrlTree, so redirecting with a
secondary route went to a 404
Closes #28805
PR Close #29267
2019-03-14 10:51:52 -04:00
Alex Eagle
019e65abfb
docs(aio): add Adam Plumer to Angular collaborators ( #29143 )
...
PR Close #29143
2019-03-14 03:06:10 -04:00
Alex Eagle
a5a35ff54a
docs(aio): Add Cédric Exbrayat to Angular collaborators ( #29169 )
...
PR Close #29169
2019-03-13 12:56:15 -07:00
Judy Bogart
1625d86178
docs: de-emphasize monorepo ( #28377 )
...
PR Close #28377
2019-03-12 18:06:22 -07:00
Judy Bogart
c4c34fe60e
docs: clarify multi project structure ( #28377 )
...
PR Close #28377
2019-03-12 18:06:22 -07:00
Alex Eagle
29fae6de08
docs(aio): add JiaLiPassion to Angular collaborators ( #29145 )
...
PR Close #29145
2019-03-12 18:03:16 -07:00
Brandon
1c251e59d7
docs: fix failing specs in testing example ( #29256 )
...
The tests that need the actuallyDone flag are grouped together
PR Close #29256
2019-03-12 11:58:28 -07:00
WilliamKoza
37b9f06f1e
docs: change the file name of the public API according with Angular CLI ( #29200 )
...
PR Close #29200
2019-03-12 11:17:22 -07:00
Paul Gschwendtner
e20a29a153
build(docs-infra): support running cli docs examples concurrently ( #29103 )
...
PR Close #29103
2019-03-12 10:46:03 -07:00
Sam Julien
defc30c7ab
docs: add Sam Julien to GDE group ( #29190 )
...
PR Close #29190
2019-03-12 10:34:30 -07:00
Adam Plumer
ed4675e5a1
docs: update Universal guide ( #28956 )
...
PR Close #28956
2019-03-11 15:33:21 -07:00
Adam Plumer
6b6fdffc12
fixup! docs: update Universal guide ( #28296 )
...
PR Close #28296
2019-03-11 10:52:18 -07:00
Adam Plumer
a29ce57732
docs: migrate examples from @angular/http to @angular/common/http ( #28296 )
...
PR Close #28296
2019-03-11 10:52:17 -07:00
Patrick Roche
d4728c40d9
docs: add ending slash to input in TOH pt1 and pt2 examples ( #29176 )
...
PR Close #29176
2019-03-08 09:33:57 -08:00
George Kalpakas
ad9415af1d
docs: remove unused examples and images ( #28597 )
...
PR Close #28597
2019-03-07 13:24:01 -08:00
tomastrajan
c866c11bf8
docs: add tomas trajan to GDE resources ( #29116 )
...
PR Close #29116
2019-03-07 07:30:08 -08:00
Alex Eagle
887faffa25
docs: cleanup contributors ( #28930 )
...
- remove individuals from @angular/* package.json, we don't keep them up-to-date
- switch keys in contributors.json to GitHub handles, seems like a better identifier and lets us grab avatar images from GitHub account
- move emeritus ppl to a new Alumni group (won't yet appear on the site)
- add "lead/mentor" keys so we know who is coordinating work
- add a script that generates an "org chart" graphic
PR Close #28930
2019-03-06 14:48:30 -08:00
Filipe Silva
6b98b534c8
docs: update ivy opt-in flag ( #29010 )
...
Followup to https://github.com/angular/angular/pull/28569#issuecomment-467380883 and https://github.com/angular/angular-cli/pull/13773 .
Note: this flag will only work on `@angular/cli@8.0.0-beta.3` (currently unreleased) and above.
PR Close #29010
2019-03-06 11:00:33 -08:00
George Kalpakas
4486dabf01
docs: order upcoming events in chronological order ( #29115 )
...
Related to https://github.com/angular/angular/pull/29095#issuecomment-469386472 .
PR Close #29115
2019-03-05 09:51:09 -08:00
Amadou Sall
d2f015f57e
docs: fix minor typo ( #29100 )
...
tradition -> traditional
PR Close #29100
2019-03-04 10:15:37 -08:00
Pete Bacon Darwin
05a9090ded
docs: add AngularConnect announcement for after ng-conf ( #29096 )
...
PR Close #29096
2019-03-04 10:14:41 -08:00
Pete Bacon Darwin
bfc40da6aa
docs(docs-infra): update where we are presenting ( #29095 )
...
PR Close #29095
2019-03-04 10:13:53 -08:00
Filipe Silva
f01247f0a4
docs: add ivy opt-in docs ( #28569 )
...
PR Close #28569
2019-02-26 08:42:47 -08:00
George Kalpakas
846c431eb7
docs: re-phrase note in architecture guide for clarity ( #28543 )
...
PR Close #28543
2019-02-26 08:39:16 -08:00
Author Name
1930e8a072
docs: add Leonardo Zizzamia to GDE resources ( #25935 )
...
PR Close #25935
2019-02-25 14:07:55 -08:00
Nikita Poltoratsky
7a11242388
docs: add Nebular to UI Components section in resources ( #28838 )
...
PR Close #28838
2019-02-25 12:54:57 -08:00
nchetankumar
65de0d6d0e
docs: modify the descendant spelling and remove multiple times parent's word ( #27886 )
...
PR Close #27886
2019-02-25 12:54:28 -08:00
Mikhail Tatsky
ef1b9e6d71
docs: add FancyGrid to resources page ( #28949 )
...
PR Close #28949
2019-02-25 10:23:33 -08:00
Camille Roux
65d3ddabf3
docs: add Human Coders trainings in resources.json ( #28840 )
...
PR Close #28840
2019-02-25 10:23:00 -08:00
softchris
0b8aad2ca0
docs: add ngVikings 2019 to events page ( #28501 )
...
PR Close #28501
2019-02-25 10:22:28 -08:00
Rick Katka
0071048cf9
docs: Updated TOH Heros documentation ( #28347 )
...
Updated the TOH Heros documentation to specify that the ng cli now generates 4 files
PR Close #28347
2019-02-25 10:21:44 -08:00
Oscar Busk
6ccf743627
docs: clarify documentation about listening to progress events ( #28892 )
...
PR Close #28892
2019-02-22 10:50:43 -08:00
Daniel Ruf
1778bd3470
refactor: remove unused and duplicate CSS properties from styleguide examples ( #28252 )
...
PR Close #28252
2019-02-22 09:51:35 -08:00
Jeferson Duwe
cbfc1f238e
docs: fix ngSwitch example ( #28899 )
...
docs: fix ngSwitch example
remove the predix "app-" from the confuse emotion ngSwitchCase.
PR Close #28899
2019-02-22 08:54:00 -08:00
Kapunahele Wong
64e6aaa4f1
docs: edit resources description ( #28764 )
...
PR Close #28764
2019-02-21 12:34:05 -08:00
Sharon DiOrio
295a143ae0
docs: add Sharon DiOrio to contributors ( #28671 )
...
PR Close #28671
2019-02-19 16:15:00 -08:00
Juri Strumpflohner
ae16378ee7
docs: fix wrong filename in text ( #28832 )
...
This should be `ngsw.json` not `ngsw-config.json` as the latter is only the src file that gets then compiled into the `ngsw.json` and placed into the `dist` folder
PR Close #28832
2019-02-19 13:34:09 -08:00
Igor Minar
73b9cd75b9
style: reformat aio/content/marketing/contributors.json with clang-format ( #28500 )
...
without this change, it's difficult to edit this file for anyone who has IDE configured for angular/angular development.
PR Close #28500
2019-02-19 13:01:18 -08:00
sis0k0
71e64e93e6
docs: add Stanimira Vlaeva to contributors ( #28500 )
...
PR Close #28500
2019-02-19 13:01:18 -08:00
Trevor Karjanis
d8ae8993d8
docs(common): fix a typo in a debounce requests example header ( #28829 )
...
Remove the extra parenthesis from a debounce requests example.
There are no associated issues.
PR Close #28829
2019-02-19 12:59:20 -08:00
Amadou Sall
af8d58cb51
docs: capitalize karma ( #28775 )
...
PR Close #28775
2019-02-19 12:36:21 -08:00
Nikita Potapenko
9e82cebe5b
docs: clarify behavior of dependency injection at root injector ( #28753 )
...
PR Close #28753
2019-02-19 12:33:48 -08:00
Jamie R. Rytlewski
a17fd43fd5
docs: display the beginning label in interpolation guide example ( #28602 )
...
Updating the doc to add the beginning label.
I'm not sure if this was the way it was intended, but it looked strange with just an ending </label> tag.
PR Close #28602
2019-02-19 12:24:45 -08:00
Keilla Fernandes
0cc5804169
docs(aio): add Keilla Fernandes to GDE resources ( #28437 )
...
PR Close #28437
2019-02-19 11:24:14 -08:00
Sergej Grilborzer
980bb52d36
docs: warn that directives don't support namespaces ( #25855 )
...
PR Close #25855
2019-02-19 11:01:55 -08:00
SebastienBtr
cb0a8b566f
docs(router): change slideInDownAnimation into slideInAnimation ( #28640 )
...
In the Routing & Navigation there is a typo - slideInDownAnimation, but it should be slideInAnimation
PR Close #28572
PR Close #28640
2019-02-13 12:03:45 -08:00
Judy Bogart
644e7a28d8
docs: add di-related api doc ( #27731 )
...
PR Close #27731
2019-02-13 11:57:37 -08:00
Brandon
99e3a04ea2
ci(docs-infra): test docs examples with Ivy ( #28463 )
...
PR Close #28463
2019-02-11 17:16:52 +00:00
Judy Bogart
570f735a2a
docs: clarify library types integration ( #28410 )
...
PR Close #28410
2019-02-11 17:13:44 +00:00
Brandon
9ec8aa5eb7
docs: re-enable E2E tests for Http guide ( #28592 )
...
PR Close #28592
2019-02-11 17:09:25 +00:00
Brandon
5f2ae784da
docs: run component-interaction and DI in JiT mode ( #28592 )
...
PR Close #28592
2019-02-11 17:09:25 +00:00
Brandon
531aa5f8db
docs: make method arguments optional in template syntax example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:25 +00:00
Brandon
bfee33edb9
docs: remove unused files in styleguide example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:25 +00:00
Brandon
1941d7c743
docs: ignore initial components for app compilation in router example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:25 +00:00
Brandon
21b5940abd
docs: ignore files from app compilation for ngmodule-faq example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:25 +00:00
Brandon
2852beaded
docs: make method arguments optional for event-binding example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:25 +00:00
Brandon
206a21704d
docs: ignore component for app compilation for displaying data example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:24 +00:00
Brandon
46e6363686
docs: add insert remove component to AppModule for animations example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:24 +00:00
Brandon
457e07ccb1
docs: make toggleImage arguments optional in AngularJS quick reference ( #28592 )
...
PR Close #28592
2019-02-11 17:09:24 +00:00
Brandon
05a14f8a8b
docs: make parent finder functions compatible with AoT ( #28592 )
...
PR Close #28592
2019-02-11 17:09:24 +00:00
Brandon
19f13b1ad4
docs: remove unused StringSafeDatePipe from AngularJS Quick Ref example ( #28592 )
...
PR Close #28592
2019-02-11 17:09:24 +00:00
Brandon
0770978dfb
docs: enable E2E test for setup example ( #28592 )
...
This guide is not being shown publicly, and its test is currently being ignored.
Instead of deleting this test and guide, it may be repurposed in the future for a local development guide.
PR Close #28592
2019-02-11 17:09:24 +00:00
Brandon
863dbeeb7c
docs: remove quickstart example and copy tsconfig.1.json into TS config guide ( #28592 )
...
This example has long been replaced by the cli-quickstart, but was never deleted.
PR Close #28592
2019-02-11 17:09:24 +00:00
Brandon
425e0ee416
ci(docs-infra): run docs examples tests in production mode ( #28592 )
...
PR Close #28592
2019-02-11 17:09:23 +00:00
Nikita Potapenko
2c00cb8f0f
docs(core): fixed code snippets ( #28619 )
...
PR Close #28619
2019-02-08 09:27:23 -08:00
Nikita Potapenko
d91ea2c499
docs(core): fixed typo ( #28618 )
...
PR Close #28618
2019-02-08 09:19:39 -08:00
Sebastian Dorn
faf0b255d0
docs(aio): add Happy Angular Podcast to resources ( #28407 )
...
PR Close #28407
2019-02-07 21:57:07 -08:00
cexbrayat
851cf16134
docs(service-worker): note about isStable/setInterval ( #28102 )
...
The docs don't mention that the app will never be stable if a `setInterval` is running somewhere, and that it will prevent the servcie worker to be registered too.
PR Close #28102
2019-02-06 15:13:19 -05:00
LHearen
1e5012b2cc
docs: fix shadow variable in tutorial example ( #28499 )
...
PR Close #28499
2019-02-04 14:54:53 -05:00
Jeremy Elbourn
ec6e7303dd
perf: pngcrush all pngs ( #28479 )
...
This is the result of running
```sh
find ./ -iname "*.png" -exec pngcrush -brute -ow -- {} \;
```
[Summary of size reductions](https://docs.google.com/spreadsheets/d/12Qgx7DfKabWw0PJza6ozC1kCHTofi6wyBLWGtwLW7G4/preview )
Last done in July, 2017 in #18243
PR Close #28479
2019-02-01 13:56:02 -05:00
Jeff Cross
0eef958735
docs: add Jeff Cross to contributors ( #28432 )
...
PR Close #28432
2019-01-29 16:41:31 -08:00
jithil-kore
ad499628cb
docs: fix typo for Browserslist in build guide ( #28328 )
...
PR Close #28328
2019-01-29 16:35:26 -08:00
Matti Järvinen
24f5428187
docs: fix typo for Browserslist in file structure guide ( #28312 )
...
PR Close #28312
2019-01-29 16:33:18 -08:00
Nazar Nasirzada
a228d65412
docs: fix typo in lifecycle-hooks.md ( #28206 )
...
## PR Checklist
Please check if your PR fulfills the following requirements:
* [x] The commit message follows our guidelines: https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit
* [ ] Tests for the changes have been added (for bug fixes / features)
* [x] Docs have been added / updated (for bug fixes / features)
## PR Type
What kind of change does this PR introduce?
* [ ] Bugfix
* [ ] Feature
* [ ] Code style update (formatting, local variables)
* [ ] Refactoring (no functional changes, no api changes)
* [ ] Build related changes
* [ ] CI related changes
* [x] Documentation content changes
* [ ] angular.io application / infrastructure changes
* [ ] Other... Please describe:
## What is the current behavior?
Issue Number: N/A
## What is the new behavior?
## Does this PR introduce a breaking change?
* [ ] Yes
* [x] No
## Other information
PR Close #28206
2019-01-29 16:32:02 -08:00
Janghyun Han
dc8e461303
docs: angular.kr link added ( #28113 )
...
PR Close #28113
2019-01-29 16:31:37 -08:00
onlyflix
41e68f7a7a
style: change to American English ( #27266 )
...
PR Close #27266
2019-01-29 16:30:25 -08:00
Dhananjay Kumar
8e75a40735
docs(docs-infra): add ng-India to events list ( #28119 )
...
docs: add ng-India to events list
PR Close #28119
2019-01-28 20:18:51 -08:00
Dario Braun
056d35c97c
docs: fix typo and add parenthesis to method in HTTP tutorial ( #28289 )
...
Merge remote-tracking branch 'origin/TOH' into TOH
PR Close #28289
2019-01-24 10:23:25 -08:00
Kapunahele Wong
75074d009f
docs: rewrite event binding section and add example ( #26162 )
...
PR Close #26162
2019-01-22 11:31:41 -08:00