-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (40 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF8">
<title></title>
<!--<script src="bower_components/d3/d3.js"></script>-->
<script src="https://jspm.io/[email protected]"></script>
<script src="config.js"></script>
<link rel="stylesheet" type="text/css" href="css/svg-stylesheet.css">
<script>
System.import('HEcosystem/app2').then(function (app) {
// app.start();
});
// System.import('./hecosystem.json!').then(function(json){
// console.log("hecosystem.json loaded");
// });
System.import('HEcosystem/gui').then(function (app) {
});
System.import('HEcosystem/hecosystem.json!json').then(function (json) {
});
System.import('HEcosystem/app-controller').then(function (app) {
});
System.import('HEcosystem/data').then(function (app) {
});
// System.import('HEcosystem/es-import').then(function(app) {
// });
</script>
</head>
<body>
<div id="container">
<svg id="drawing-area">
<defs>
<marker id="end-arrow" viewBox="0 -5 10 10" refX="6" markerWidth="3" markerHeight="3" orient="auto">
<path d="M0,-5L10,0L0,5" fill="#000"></path>
</marker>
</defs>
</svg>
</div>
</body>
</html>