generated from sindresorhus/electron-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (41 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<title>Plotter</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="css/photon.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="node_modules/nouislider/distribute/nouislider.min.css">
<!-- Javascript -->
</head>
<body>
<div class="window">
<!-- .toolbar-header sits at the top of your app -->
<header class="toolbar toolbar-header">
<div class="toolbar-actions">
<button class="btn btn-default" id="file-picker">
<span class="icon icon-database icon-text"></span>
Choose log file
</button>
<button class="btn btn-default" id="config-picker">
<span class="icon icon-menu icon-text"></span>
Choose config file
</button>
</header>
<div class="tab-group" id="tabs">
<div class="tab-item tab-item-fixed" id="newTab">
<span class="icon icon-plus"></span>
</div>
</div>
<!-- Your app's content goes inside .window-content -->
<div class="window-content">
<canvas id="chart">
</canvas>
</div>
<footer class="toolbar toolbar-footer">
<div class="nouislider" id="slider"></div>
</footer>
</div>
<script src="js/plotter.js"></script>
</body>
</html>