-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (60 loc) · 2.63 KB
/
Copy pathindex.html
File metadata and controls
73 lines (60 loc) · 2.63 KB
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
71
72
73
<!doctype html>
<html lang="en">
<head>
<title>piOS Text Editor</title>
<link rel="stylesheet" href="css.css">
<link rel="icon" type="image/png" href="okicon.png">
<script src="js.js"></script>
</head>
<body>
<div id="container">
<div class="title name" contenteditable="true" spellcheck="false">Saltssaumure's piOS Text Editor</div>
<div class="kazz chat" id="kazz">
<div class="name" contenteditable="true" spellcheck="false"></div>
<div class="frame">
<div class="text" contenteditable="true" spellcheck="false"></div>
</div>
</div>
<div class="system chat" id="system">
<div class="name" contenteditable="true" spellcheck="false"></div>
<div class="frame">
<div class="text" contenteditable="true" spellcheck="false"></div>
</div>
</div>
</div>
<div class="options left">
<p class="addkazz" onclick="addbox('kazz','left')">+</p>
<p class="addsystem" onclick="addbox('system','left')">+</p>
<p id="hidex" onclick="hideX()">o</p>
<p id="help" onclick="help()">?</p>
</div>
<div class="options right">
<p class="addkazz" onclick="addbox('kazz','right')">+</p>
<p class="addsystem" onclick="addbox('system','right')">+</p>
<p class="save" onclick="save()">S</p>
<p class="savecss"><a href="css.css" download>C</a></p>
</div>
<div id="helpful">
<p>Help</p>
<ul>
<li>The editor title is editable.</li>
<li>Names can be typed on the top line of the chat boxes.</li>
<li>Use the "x" button underneath a chat box to close that box. Chat boxes cannot be recovered once closed!</li>
</ul>
<p>Sidebars</p>
<ul>
<li><b>+</b> : Add chat boxes to the bottom of the page. You may need to scroll down to see them.</li>
<li><b>o</b> : Hide/unhide <b>x</b> buttons which remove chat boxes.</li>
<li><b>?</b> : Open this help menu.</li>
<li><b>S</b> : Save an HTML copy of your chat log.</li>
<li><b>C</b> : Download the CSS to view saved chat logs in the piOS style. Place this in the same folder as the HTML files.</li>
</ul>
<p>Got complaints? :^)</p>
<ul>
<li>GitHub: <a href="https://github.com/Saltssaumure/pios-text-editor">pios-text-editor</a></li>
<li>Discord: Saltssaumure#7557</li>
<li>Tumblr: <a href="https://saltssamure.tumblr.com">Saltssaumure</a></li>
</ul>
</div>
</body>
</html>