forked from makseo/ng2-sticky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<base href="/">
<title>ng2-sticky demo</title>
<link rel="stylesheet" href="demo/sticky-demo.css">
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.js"></script>
<script>
(function (global) {
System.config({
map: {
app: '.',
"@angular": "node_modules/@angular",
"rxjs": "node_modules/rxjs",
"ng2-sticky-kit": "."
},
packages: {
"demo": {main: "main", defaultExtension: "js"},
"ng2-sticky-kit": {main: "ng2-sticky-kit.js"},
"@angular/common": {main: "bundles/common.umd.js"},
"@angular/compiler": {main: "bundles/compiler.umd.js"},
"@angular/core": {main: "bundles/core.umd.js"},
"@angular/http": {main: "bundles/http.umd.js"},
"@angular/platform-browser": {main: "bundles/platform-browser.umd.js"},
"@angular/platform-browser-dynamic": {main: "bundles/platform-browser-dynamic.umd.js"},
"rxjs": {defaultExtension: "js"}
}
});
})(this);
</script>
<script>
System.import('demo').catch(function (error) {
console.error(error)
});
</script>
</head>
<body>
<app></app>
</body>
</html>