-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanel.html
More file actions
43 lines (43 loc) · 1.3 KB
/
panel.html
File metadata and controls
43 lines (43 loc) · 1.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="panel.css" />
</head>
<body>
<div id="app">
<div id="toolbar">
<button type="button" id="refresh-btn" title="Refresh component tree">↻ Refresh</button>
<span id="component-count">0 components</span>
<span id="pyreon-version"></span>
</div>
<div id="main">
<div id="tree-pane">
<div id="tree-container"></div>
</div>
<div id="detail-pane">
<div id="detail-placeholder">Select a component to inspect</div>
<div id="detail-content" style="display: none;">
<h3 id="detail-name"></h3>
<div class="detail-section">
<label>ID</label>
<span id="detail-id"></span>
</div>
<div class="detail-section">
<label>Parent</label>
<span id="detail-parent"></span>
</div>
<div class="detail-section">
<label>Children</label>
<div id="detail-children"></div>
</div>
</div>
</div>
</div>
<div id="stats-bar">
<span id="stats-text">Connecting...</span>
</div>
</div>
<script src="panel.js"></script>
</body>
</html>