forked from thelgevold/angular-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (31 loc) · 1.33 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
<html>
<head>
<title>Angular 2 Demos</title>
<script src="bower_components/jquery/dist/jquery.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/require/build/require.js"></script>
<script src="bower_components/react/react.min.js"></script>
<script>
var __React = React;
var Dispatcher = require('flux').Dispatcher;
var EventEmitter = require('events').EventEmitter;
</script>
<script src="https://github.jspm.io/jmcriffey/[email protected]/traceur-runtime.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/systemjs/0.18.4/system.src.js"></script>
<script>
System.config({
defaultJSExtensions: true
});
</script>
<script src="https://code.angularjs.org/2.0.0-alpha.37/angular2.js"></script>
<script src="https://code.angularjs.org/2.0.0-alpha.37/http.dev.js"></script>
<script src="https://code.angularjs.org/2.0.0-alpha.37/router.dev.js"></script>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="site.css" rel="stylesheet">
</head>
<body>
<demo-app></demo-app>
<script>System.import('app');</script>
</body>
</html>