-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathwindow.html
59 lines (59 loc) · 2.55 KB
/
window.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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>appName</title>
<link rel="stylesheet" href="styles/flaticon.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body id="WindowView">
<webview class="background webview" id="panel-container" src="about:blank" partition="persist:framelessapps" frameborder="0"></webview>
<button class="window-button" title="Show toolbar" id="show-toolbar-button">
▼
</button>
<div id="toolbar" class="position">
<button class="window-button" title="Hide toolbar" id="hide-toolbar-button">
▲
</button>
<webview id="document-favicon" partition="persist:framelessapps" frameborder="0" allowtransparency></webview><span id="document-title">appName</span>
<div class="actions">
<button class="window-button ml-0" title="Zoom in" id="zoom-in-window-button">
+
</button>
<button class="window-button ml-0" title="Reset zoom" id="zoom-reset-window-button">
0
</button>
<button class="window-button ml-0" title="Zoom out" id="zoom-out-window-button">
-
</button>
<button class="window-button" title="Set aspect ratio to 16:9" id="aspect-window-button">
<svg class="icon">
<use href="assets/icons.svg#aspect" />
</svg>
</button>
<button class="window-button pinned" title="Toggle window stay-on-top" id="pin-window-button">
<svg class="icon">
<use href="assets/icons.svg#push-pin" />
</svg>
</button>
<button class="window-button" title="Minimize" id="minimize-window-button">
<svg class="icon">
<use href="assets/icons.svg#line" />
</svg>
</button>
<button class="window-button" title="Settings" id="settings-window-button">
<svg class="icon">
<use href="assets/icons.svg#cogwheel" />
</svg>
</button>
<button class="window-button" title="Close" id="close-window-button">
<svg class="icon">
<use href="assets/icons.svg#close" />
</svg>
</button>
</div>
<div class="drag-handle"></div>
</div>
<script defer src="scripts/google-analytics-bundle.js"></script>
<script defer src="scripts/window.js"></script>
</body>
</html>