forked from thelgevold/angular-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (31 loc) · 1.08 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
<html>
<head>
<title>Angular Demos</title>
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/systemjs/dist/system.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="node_modules/zone.js/dist/zone.min.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>
var __React = React;
var Dispatcher;
var EventEmitter;
System.import('node_modules/flux/dist/Flux.min.js')
.then(function(data){
Dispatcher = data.Dispatcher;
return System.import('node_modules/events/events.js');
})
.then(function(data) {
EventEmitter = data.EventEmitter;
return System.import('dist/bundle.js');
});
</script>
</body>
</html>