forked from thelgevold/angular-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (33 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>Angular 2 Demos</title>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_components/underscore/underscore-min.js"></script>
<script src="bower_components/react/react.min.js"></script>
<script src="lib/custom-require.js"></script>
<script>
var __React = React;
var Dispatcher = require('./node_modules/flux/dist/Flux.min').Dispatcher;
var EventEmitter = require('./node_modules/events/events').EventEmitter;
</script>
<script src="node_modules/angular2/bundles/angular2-polyfills.min.js"></script>
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system.js"></script>
<script>
System.config({
defaultJSExtensions: true
});
</script>
<script src="node_modules/rxjs/bundles/Rx.min.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="node_modules/angular2/bundles/http.dev.js"></script>
<script src="node_modules/angular2/bundles/router.dev.js"></script>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="site.css?v=1" rel="stylesheet">
</head>
<body>
<demo-app></demo-app>
<script>System.import('./app');</script>
</body>
</html>