Skip to content

docs: hammerjs using systemjs.config #10711

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 37 commits into from
May 9, 2018
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
7638499
Remove extra space
Longfld Apr 2, 2018
e6df813
Update getting-started.md
Longfld Apr 2, 2018
a658bb7
minified version for hammerjs
Longfld Apr 4, 2018
672a7b6
formatting
Longfld Apr 5, 2018
ac675f5
Merge remote-tracking branch 'upstream/master'
Longfld Apr 5, 2018
f61298d
update hammerjs
Longfld Apr 5, 2018
bdbb63a
fix(tooltip): error when updating position while closed (#10704)
crisbeto Apr 5, 2018
59e0db8
chore: remove duplicate imports (#10692)
rafaelss95 Apr 5, 2018
51a77c9
fix(tree): fix nested node cannot expand/collapse multiple times (#10…
tinayuangao Apr 5, 2018
b408cc1
fix(datepicker): close datepicker popup on alt + up arrow (#10662)
crisbeto Apr 5, 2018
377cba1
fix(tabs): tab content portal not being cleaned up on destroy (#10661)
crisbeto Apr 5, 2018
4614ebd
fix(slide-toggle): run timeout outside the NgZone (#10655)
crisbeto Apr 5, 2018
b9902c2
feat(coercion): add utility for coercing CSS values (#10654)
crisbeto Apr 5, 2018
477c97a
fix(overlay): incorrect bottom offset using upward-flowing flexible p…
crisbeto Apr 5, 2018
e0095a5
fix(stepper): horizontal stepper cutting off bottom part of content (…
crisbeto Apr 5, 2018
9202be0
fix(datepicker): export `MatCalendarHeader` (#10633)
mmalerba Apr 5, 2018
d651aac
fix(badge): incorrectly handling rtl (#10630)
crisbeto Apr 5, 2018
7703329
fix(autocomplete): panel width not being updated on window resize (#1…
crisbeto Apr 5, 2018
de1082f
fix(table,sort,paginator): incorrect spacing in rtl (#10617)
crisbeto Apr 5, 2018
20f1e97
fix(focus-monitor): hitting ngzone when using focusVia (#10608)
crisbeto Apr 5, 2018
a5fe459
fix(button-toggle): setting blank aria-label attribute by default (#1…
crisbeto Apr 5, 2018
6bdcd92
fix(form-field): run change detection when prefix or suffix changes (…
mmalerba Apr 5, 2018
7f545d8
docs(readme): update angular material links (#10717)
EdricChan03 Apr 5, 2018
ad4f73b
chore: bind devapp to 0.0.0.0 (#10714)
josephperrott Apr 5, 2018
a089b07
chore: bump version to 6.0.0-rc.1 w/ changelog (#10725)
jelbourn Apr 5, 2018
ded377f
chore(dialog): correct tsconfig-build file for cdk-experimental dialo…
josephperrott Apr 6, 2018
e827e0c
docs(focus-monitor): add documentation (#10547)
mmalerba Apr 6, 2018
32ff10e
chore: suppress passed tests logs during travis usage (#10722)
josephperrott Apr 6, 2018
ead8b02
chore(docs): update autocomplete.md to match new example (#10641)
dmytroyarmak Apr 6, 2018
717b4e3
refactor(input): improve test speed (#10565)
crisbeto Apr 6, 2018
a4fdedd
refactor(chip-list): improve unit test speed (#10564)
crisbeto Apr 6, 2018
bd92fb8
docs(stepper): Created stepper examples for documentation (#10537)
raygervais Apr 6, 2018
aa9a045
refactor(slide-toggle): switch to fakeAsync tests (#10506)
crisbeto Apr 6, 2018
f7b61ff
docs: add schematics guide (#10502)
amcdnl Apr 6, 2018
e469e1a
chore(tree): fix wrong property used in demo-app (#10448)
RytisLT Apr 6, 2018
fe2319a
Merge remote-tracking branch 'upstream/master'
Longfld Apr 6, 2018
2aff7c8
Merge remote-tracking branch 'upstream/master'
Longfld May 3, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,12 @@ System.config({
'@angular/cdk/platform': 'npm:@angular/cdk/bundles/cdk-platform.umd.js',
'@angular/cdk/a11y': 'npm:@angular/cdk/bundles/cdk-a11y.umd.js',
// ...
'hammerjs': 'npm:hammerjs',
},
packages: {
//...
hammerjs: {main: './hammer.min.js', defaultExtension: 'js'}
//...
}
});
```
Expand Down