-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanel.html
More file actions
executable file
·31 lines (31 loc) · 1004 Bytes
/
panel.html
File metadata and controls
executable file
·31 lines (31 loc) · 1004 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
28
29
30
31
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/panel.css">
</head>
<body>
<template id="network-template">
<div class="network-list"></div>
</template>
<template id="focalstorage-template">
<div class="focalstorage-data"></div>
</template>
<template id="modules-template">
<div class="module-list"></div>
</template>
<template id="testing-template">
<button id="open-debugger">Open Lively Debugger Window</button>
<button id="open-workspace">Open Workspace</button>
<button id="open-sync-window">Open Sync Window</button>
</template>
<div id="nav">
<button id="network" class="nav-button selected">Network</button>
<button id="focalstorage" class="nav-button">FocalStorage</button>
<button id="modules" class="nav-button">Modules</button>
<button id="testing" class="nav-button">Testing</button>
<div id="drag-n-drop"><div class="bar"></div></div>
</div>
<div id="main"></div>
<script src="js/utils.js"></script>
<script src="js/panel.js"></script>
</body>
</html>