-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>Angular 2 QuickStart</title>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.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/d3/d3.js"></script>
<script src="bower_components/svg-typewriter/svgtypewriter.js"></script>
<script src="bower_components/plottable/plottable.js"></script>
<script src="config.js"></script>
<script>
System.import('src')
.then(null, console.error.bind(console));
</script>
<style>
demo {
display: block;
}
</style>
<link href="bower_components/plottable/plottable.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-9">
<root class="panel panel-default">Loading...</root>
</div>
</div>
</div>
</body>
</html>