-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
70 lines (65 loc) · 2.52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="./favicon.png" sizes="128x128" />
<title>Lite XL</title>
<meta property="og:title" content="Try Lite XL" />
<meta property="og:url" content="https://lite-xl.com/playground" />
<meta property="og:site_name" content="Lite XL" />
<meta property="og:description" content="Try Lite XL in your Browser!" />
<link rel="stylesheet" href="./css/main.css" />
<script src="https://unpkg.com/[email protected]"></script>
<script src="./js/main.js"></script>
<script src="./bundle.wasm.js"></script>
<script src="./lite-xl.js"></script>
</head>
<body>
<canvas id="canvas"></canvas>
<textarea id="clipping" class="hidden" aria-hidden="true"></textarea>
<textarea id="textinput" class="hidden" aria-hidden="true" autocapitalize="off" spellcheck="false" autocorrect="off" autocomplete="off" aria-autocomplete="none" autofocus></textarea>
<div class="modal" id="loading">
<h2>Loading...</h2>
<p>Status: <span id="status">Unknown</span></p>
<p>
If this page freezes, please check the console (F12/Ctrl+Shift+I) for
any errors.
</p>
</div>
<div class="modal" id="close">
<h2>Oops, Lite XL is closed!</h2>
<p>
If you didn't do this intentionally, please check the console
(F12/Ctrl+Shift+I) for any errors.
</p>
<p>You can refresh the page to load Lite XL again.</p>
</div>
<table class="sync_indicator">
<tr>
<td class="sync_indicator status">
<p id="file_sync_status">File Sync</p>
<p id="workspace_sync_status">Workspace Sync</p>
</td>
<td>
<svg
id="sync_icon"
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 0 24 24"
width="24"
>
<path
style="mix-blend-mode: difference; fill: white"
d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"
/>
</svg>
</td>
</tr>
</table>
<noscript>
<p>You need to enable JavaScript and WASM for this page to work.</p>
</noscript>
</body>
</html>