forked from thelgevold/angular-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (23 loc) · 961 Bytes
/
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
<html>
<head>
<title>Angular 2 Demos</title>
<script src="node_modules/core-js/client/shim.min.js"></script>
<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/zone.js/dist/zone.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 src="./dist/bundle.js"></script>
</body>
</html>