-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 949 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
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>Building dependency graph</title>
<link rel="stylesheet" type="text/css" href="css/fs.css"/>
</head>
<body>
<div class="example">
<div id="drop_zone">Drag-and-Drop KITS src folder to see parsed output</div>
</div>
<div class="sigma-parent">
<div class="sigma-expand" id="sig"></div>
</div>
<div>
<div class="dep-right">
<p>Modules without .classpath:</p>
<ul id="noDep"></ul>
</div>
<div class="dep-left">
<p>Modules without kf dependencies:</p>
<ul id="removed"></ul>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/sigma.concat.js"></script>
<script src="js/sigma.forceatlas2.js"></script>
<script src="js/dnd.js"></script>
</body>
</html>