-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_tree.html
More file actions
27 lines (27 loc) · 953 Bytes
/
index_tree.html
File metadata and controls
27 lines (27 loc) · 953 Bytes
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
<html>
<head>
<link rel="stylesheet" href="modelviewer.css">
<script src="commonInheritance.js"></script>
<script src="tree.js"></script>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js" integrity="sha512-XMVd28F1oH/O71fzwBnV7HucLxVwtxf26XV8P4wPk26EDxuGZ91N8bsOttmnomcCD3CS5ZMRL50H0GgOHvegtg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body onload="fetchImxVersions();">
<div class="container">
<div class="header">
<p>IMX Model Viewer</p>
</div>
<div class="main">
<div class="nav" id="nav_panel">
<div class="upload" ondrop="dropHandler(event);" ondragover="dragOverHandler(event);">
<p>Drop IMX files here</p>
</div>
</div>
<div class="content" id="model_panel">
<p>Selecteer een IMX versie om een overzicht van het model te genereren.</p>
<div id="diagram"></div>
</div>
</div>
</div>
</body>
</html>