-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
23 lines (23 loc) · 866 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CIMDraw</title>
<link rel="stylesheet" href="css/fontawesome.all.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<link rel="stylesheet" href="css/d3-context-menu.css" type="text/css" />
<script src="dist/cimdraw.min.js"></script>
</head>
<body>
<cimDraw></cimDraw>
<script>
riot.register("cimdraw", cimDraw);
riot.register("cimtopologyprocessor", cimTopologyProcessor);
riot.register("cimtree", cimTree);
riot.register("cimdiagram", cimDiagram);
riot.register("cimdiagramcontrols", cimDiagramControls);
riot.mount("cimdraw");
</script>
</body>
</html>