-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QLC+ Toolkit</title>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
<script src="parser.js"></script>
<script src="ui.js"></script>
<!-- Styles -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<span class="title">QLC+ Project Toolkit</span>
<div>
<button class="button" id="btn-open" onclick="openFile()">Open</button>
<span style="display: none;" id="txt-filename">filename</span>
<button class="button" style="display: none;" id="btn-save">Save</button>
</div>
</header>
<main>
<span>File</span>
<button class="button" id="btn-sort-fixtures">Sort Fixtures</button>
<button class="button" id="btn-update-groups">Update Functions with Channelgroups</button>
<span class="indented">(This will remove Fixtures from Functions with Channelgroups)</span>
<div id="operations-selection" style="display: none;" class="operations">
<span>Selection</span>
<div id="operations-function" class="operations">
<button class="button" id="btn-update-groups-single">Update with Channelgroups</button>
</div>
<div id="operations-folder" class="operations">
<button class="button" id="btn-add-foldername">Add Folder Name to Functions</button>
</div>
</div>
</main>
<div id="center">
<div class="tabs"><span id="tab-fixtures">Fixtures</span><span id="tab-functions" class="active">Functions</span></div>
<div id="fixtures" style="display: none;"></div>
<div id="functions"></div>
</div>
<div id="sidebar">
<span>File Data</span>
<pre id="file-data"></pre>
</div>
<input type="file" name="qlcfile" id="qlcfile" accept=".qxw" style="display: none;" onchange="loadFile(event)">
</body>
</html>