-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (58 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Art of the Refactor: Scoping Problem Domain of old "vsc-translate" directive</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/clarity-ui/0.10.28/clarity-ui-dark.min.css"/>
<link rel="stylesheet" href="styles.css"/>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="layout.js"></script>
</head>
<body onload="pageInit()">
<div class="main-container">
<ul id="treeMap" class="nav" role="tablist">
<li role="presentation" class="nav-item">
<button
id="tab1"
class="btn btn-link nav-link"
type="button"
onclick="changeTab('1')"
>
HTML templates
(<span id="tab1ItemsCount"></span>)
</button>
</li>
<li role="presentation" class="nav-item">
<button
id="tab2"
class="btn btn-link nav-link"
type="button"
onclick="changeTab('2')"
>
<div style="color: #f80">
Scope Stats
</div>
</button>
</li>
</ul>
<section id="panel1" role="tabpanel" hidden aria-labelledby="tab1">
<svg id="svg1" width="10000" height="1080"></svg>
</section>
<!-- project plan -->
<section id="panel2" role="tabpanel" hidden aria-labelledby="tab2">
<table id="scopeStatisticsTable">
<thead>
<th>Type</th>
<th>Files Affected</th>
<th>Total Occurrences</th>
</thead>
<tr>
<td id="htmlTypeDescriptor"></td>
<td id="htmlFilesAffectedCount"></td>
<td id="htmlTotalOccurrencesCount"></td>
</tr>
</table>
<hr/>
</section>
</div>
</body>
</html>