-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (28 loc) · 971 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
32
33
<html>
<head>
<script src="assets/jquery.js"></script>
<script src="assets/classes.js"></script>
<script src="assets/scripts.js"></script>
<script src="assets/ui.js"></script>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div class="content debug-hidden lamps">
<div class="top-bar">
<h1>Home App</h1>
<div class="view-switch">
<div class="switch-item left selected" onclick="switchView('left');">
Lamps
</div>
<div class="switch-item right" onclick="switchView('right');">
Szenes
</div>
</div>
<button onclick="get_rooms()">refresh</button>
</div>
<div class="result"></div>
<div class="list">
</div>
</div>
</body>
</html>