Max Ivanov
2015ccd1f5
docs(aio): added a link to Angular-RU ( #21687 )
...
Angular-RU Community on GitHub is a single point for all resources, chats, podcasts and meetups for Angular in Russia
PR Close #21687
2018-01-22 12:55:03 -08:00
Denny Brown
8c51c276c7
docs: fix stray div and reformat paragraph ( #21676 )
...
PR Close #21676
2018-01-19 20:40:13 -08:00
Fabian Wiles
c8a1a14b87
docs: clarify the use of classes and interfaces in style guide ( #20919 )
...
PR Close #20919
2018-01-18 18:22:55 -06:00
Chuck Jazdzewski
64d16dee02
feat(compiler): implement "enableIvy" compiler option ( #21427 )
...
The "enableIvy" compiler option is the initial implementation
of the Render3 (or Ivy) code generation. This commit enables
generation generating "Hello, World" (example in the test)
but not much else. It is currenly only useful for internal Ivy
testing as Ivy is in development.
PR Close #21427
2018-01-18 18:22:44 -06:00
George Kalpakas
44a4b1680f
docs: improve/simplify example for `providers` guide ( #21589 )
...
PR Close #21589
2018-01-18 18:22:20 -06:00
George Kalpakas
4596b9d0df
docs: fix/improve example for `singleton-services` guide ( #21589 )
...
PR Close #21589
2018-01-18 18:22:20 -06:00
George Kalpakas
81e87095b4
docs: several minor `NgModule` guide fixes/improvements ( #21589 )
...
PR Close #21589
2018-01-18 18:22:20 -06:00
George Kalpakas
bf248792eb
docs: minor fixes (anchor tags, redundant whitespace, consistent code-snippets lang) ( #21589 )
...
PR Close #21589
2018-01-18 18:22:20 -06:00
Vani
1ce46b56f8
docs: change titles to sentence case ( #21620 )
...
PR Close #21620
2018-01-18 18:22:09 -06:00
George Kalpakas
d07760f5e3
build(aio): fix zips testing commands ( #21629 )
...
PR Close #21629
2018-01-18 18:21:59 -06:00
Kapunahele Wong
af2a843446
docs: edit entry component FAQ ( #21487 )
...
PR Close #21487
2018-01-17 17:14:33 -08:00
Kapunahele Wong
02377335ec
docs: add server side redirect and fix NgModule FAQ links ( #21487 )
...
PR Close #21487
2018-01-17 17:14:33 -08:00
Kapunahele Wong
e79e98ab44
docs: fix lazy loading example dir name ( #21475 )
...
PR Close #21475
2018-01-17 17:02:41 -08:00
Alan Agius
030c68df32
docs(aio): change `df-question` to `app-question` ( #21438 )
...
closes : #21404
PR Close #21438
2018-01-17 07:20:17 -08:00
Chuck Jazdzewski
2d44a2ab0d
docs(compiler): document the $any type cast function ( #20968 )
...
Closes #20966
PR Close #20968
2018-01-12 14:37:26 -08:00
Pete Bacon Darwin
c5c6d84fe6
style(aio): enforce strict TypeScript checks ( #21342 )
...
Closes #20646
PR Close #21342
2018-01-12 14:36:43 -08:00
Kapunahele Wong
00300f66e8
docs(forms): clarify note in reactive forms doc ( #21134 )
...
PR Close #21134
2018-01-11 07:03:55 -08:00
Kapunahele Wong
456f57dde8
docs: fix lazy-loading example ( #20306 )
...
PR Close #20306
2018-01-10 16:26:46 -08:00
Kapunahele Wong
53f91189a1
docs(aio): add NgModule docs ( #20306 )
...
PR Close #20306
2018-01-10 16:26:46 -08:00
Anton Strogonoff
27196b676b
docs(aio): fix punctuation for clarity ( #21325 )
...
PR Close #21325
2018-01-08 16:12:24 -08:00
chembu
e99475260f
docs(aio): document the template compiler options ( #21333 )
...
PR Close #21333
2018-01-08 13:23:16 -05:00
lharries
f9436f7a5b
docs(aio): delete duplicated word ( #21129 )
...
PR Close #21129
2018-01-05 16:22:28 -05:00
Siyao Li
2402224b4e
docs(common): update copyright years ( #21232 )
...
PR Close #21232
2018-01-04 17:45:36 -05:00
courtneypattison
03d16fcd24
docs(aio): add missing imports to interceptor example ( #21259 )
...
PR Close #21259
2018-01-04 17:40:34 -05:00
Zenn
dcc3eba962
fix(aio): fix test message's mistake. ( #21254 )
...
duplicated message for 1st link. /heroes is 2nd link.
PR Close #21254
2018-01-04 17:38:25 -05:00
Dawid Winiarczyk
d365077dfa
docs(aio): HttpClientXsrfModule withConfig => withOptions ( #21185 )
...
Docummentation suggests use of HttpClientXsrfModule#withConfig but this method looks like it's renamed to #withConfig.
https://angular.io/guide/http#configuring-custom-cookieheader-names
PR Close #21185
2018-01-02 10:29:07 -06:00
Dmitry Fisenko
bc66d27938
docs(service-worker): fix word wrap ( #21114 )
...
The fix removes space between 'c' and 'aches' in docs
PR Close #21114
2017-12-21 20:12:18 -08:00
chembu
f593552cfe
docs(aio): Rename service worker files, update examples, move service worker under Techniques
2017-12-19 11:07:57 -08:00
Dmytro Yarmak
8458647232
docs(aio): fix inconsistency in lifecycle hooks table
2017-12-19 10:48:29 -08:00
Jesus Rodriguez
74e3115686
build(aio): make zipper work correctly with CLI projects
2017-12-19 10:44:56 -08:00
Alex Rickabaugh
20e1cc049f
fix(service-worker): check for updates on navigation
...
Currently the Service Worker checks for updates only on SW startup,
an event which happens frequently but also nondeterministically. This
makes it hard for developers to observe the update process or reason
about how updates will be delivered to users. This problem is
exacerbated by the DevTools behavior of keeping the SW alive
indefinitely while opened, effectively preventing the page from
updating at all.
This change causes the SW to additionally check for updates on
navigation requests (app page reloads). This creates deterministic
update behavior, and is much easier for developers to reason about.
It does leave the old update-on-SW-startup behavior in place, as
removing that would be a breaking change.
Fixes #20877
2017-12-15 15:19:20 -08:00
Trotyl Yu
225baf4686
docs(aio): fix typo for missing quote ( #20888 )
...
PR Close #20888
2017-12-08 10:06:41 -08:00
Kapunahele Wong
9bbec42a6c
docs(aio): add service worker guide content and update nav ( #20736 )
...
PR Close #20736
2017-12-06 06:52:20 -08:00
Olivier Combe
be994496cd
docs(core): add docs for i18n tokens ( #17920 )
...
PR Close #17920
2017-12-05 21:56:43 -08:00
hartraft
77ef527993
docs(aio): update myUnless references to appUnless ( #20658 )
...
fixes Issue Number: #20447
PR Close #20658
2017-12-05 21:54:39 -08:00
Oussama Ben Brahim
f092a7c824
docs(aio): fix numbering of the three ways to access hero details ( #20647 )
...
Fixes #20628
PR Close #20647
2017-12-05 21:54:34 -08:00
Ward Bell
5e25d3986d
docs: component-styles guide - inline styles must be CSS ( #20701 )
...
Cannot write them in less, sass, or stylus
See CLI issue https://github.com/angular/angular-cli/issues/8472
PR Close #20701
2017-12-05 21:54:23 -08:00
Jesus Rodriguez
f7328c69b3
docs(aio): architecture review for a11y ( #17848 )
...
PR Close #17848
2017-12-05 21:49:27 -08:00
Frédéric DUPERIER
25f2211726
docs: add We Are One Sàrl as onsite training ( #20714 )
...
Adding We Are One Sàrl as an onsite training company in Switzerland.
PR Close #20714
2017-12-05 21:48:41 -08:00
ite-klass
18793c896b
docs(aio): Fix typo ( #20732 )
...
Remove duplicate word 'to'
PR Close #20732
2017-12-05 21:46:56 -08:00
George Kalpakas
47addd169d
revert: docs(aio): add service worker guide content and update nav ( #20021 ) ( #20716 )
...
* revert: style: broken build due to missing new lines
This reverts commit ba6af2a6dd
.
The commit that introduced these files (48300067f
) will also get
reverted.
* revert: docs(aio): add service worker guide content and update nav (#20021 )
This reverts commit 48300067fb
.
This commit has some issues (e.g. breaks some e2e tests, adds images
to the wrong directories, breaks linting, etc).
Reverting in order to investigate and fix.
2017-11-30 09:53:07 -08:00
Misko Hevery
ba6af2a6dd
style: broken build due to missing new lines
2017-11-29 20:27:25 -08:00
A7xSV
b9e4d62d5a
docs(aio): remove services plurality ( #20696 )
...
remove services plurality for the sentence formation to be proper
PR Close #20696
2017-11-29 16:53:49 -06:00
Konstantin Dinev
f3c5481181
docs(aio): Updating with Ignite UI for Angular ( #20663 )
...
PR Close #20663
2017-11-29 12:15:34 -06:00
Kapunahele Wong
48300067fb
docs(aio): add service worker guide content and update nav ( #20021 )
...
PR Close #20021
2017-11-29 12:15:27 -06:00
trevorade
b841e0d530
docs(aio): add class attribute to example referenced in Structural Directive guide ( #19446 )
...
See https://github.com/angular/angular/blob/master/aio/content/guide/structural-directives.md
From the structural-directives.md:
The rest of the <div>, including its class attribute, moved inside the <ng-template> element.
Maybe this made sense at one time but it has become out of sync.
PR Close #19446
2017-11-29 12:15:21 -06:00
briancherin
eaaae2edf4
docs: fix grammar and wording ( #18530 )
...
PR Close #18530
2017-11-28 22:27:02 -06:00
Stephen Fluin
5bef070e16
docs(aio): update homepage tooling image ( #20593 )
...
Fix #19831
PR Close #20593
2017-11-27 12:16:20 -06:00
Stephen Fluin
0444e13efb
docs(aio): add ngATL header ( #20590 )
...
Fix #20568
PR Close #20590
2017-11-22 13:49:59 -06:00
Cyrille Tuzi
a0819d3af1
docs(aio): add a French onsite training ressource ( #19889 )
...
PR Close #19889
2017-11-22 08:58:02 -06:00