-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
661 lines (652 loc) · 21 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=yes" />
<title>Jack Rabbit Slims</title>
<link rel="shortcut icon" href="favicon.ico" />
<script src="https://www.gstatic.com/firebasejs/3.6.9/firebase.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="jquery.fine-uploader.min.js"></script>
<link href="fine-uploader.min.css" rel="stylesheet" />
<script type="text/javascript" src="slims.js"></script>
<!-- WhichBrowser https://github.com/WhichBrowser/WhichBrowser -->
<script>
(function(){var p=[],w=window,d=document,e=f=0;p.push('ua='+encodeURIComponent(navigator.userAgent));e|=w.ActiveXObject?1:0;e|=w.opera?2:0;e|=w.chrome?4:0;
e|='getBoxObjectFor' in d || 'mozInnerScreenX' in w?8:0;e|=('WebKitCSSMatrix' in w||'WebKitPoint' in w||'webkitStorageInfo' in w||'webkitURL' in w)?16:0;
e|=(e&16&&({}.toString).toString().indexOf("\n")===-1)?32:0;p.push('e='+e);f|='sandbox' in d.createElement('iframe')?1:0;f|='WebSocket' in w?2:0;
f|=w.Worker?4:0;f|=w.applicationCache?8:0;f|=w.history && history.pushState?16:0;f|=d.documentElement.webkitRequestFullScreen?32:0;f|='FileReader' in w?64:0;
p.push('f='+f);p.push('r='+Math.random().toString(36).substring(7));p.push('w='+screen.width);p.push('h='+screen.height);var s=d.createElement('script');
s.src='/whichbrowser/detect.js?' + p.join('&');d.getElementsByTagName('head')[0].appendChild(s);})();
</script>
<style type="text/css">
html,body{margin:0;padding:0;}
p,blockquote,pre,a,abbr,acronym,address,cite,del,dfn,
em,img,q,s,samp,small,strike,strong,sub,sup,tt,var,
fieldset,form,label,legend,button,table,caption,tbody,tfoot,thead,tr,th,td{
margin:0;padding:0;border:0;font-weight:normal;font-style:normal;
font-size:100%;line-height:1;font-family:inherit;}
ul{list-style-type:square;margin:0;}
ol{margin:0;}
table{border-collapse:collapse;border-spacing:0;}
html{overflow-y:scroll;font-size:100%;-webkit-text-size-adjust:100%;
-ms-text-size-adjust:100%;}
a:focus{outline:thin dotted;}
a:hover,a:active{outline:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{
display:block;}
audio,canvas,video{display:inline-block;}
audio:not([controls]){display:none;}
sub,sup{
font-size:75%;line-height:0;position:relative;vertical-align:baseline;}
sup{top:-0.5em;}
sub{bottom:-0.25em;}
img{border:0;-ms-interpolation-mode:bicubic;}
button,input,select,textarea{
font-size:100%;margin:0;vertical-align:baseline;}
button,input{line-height:normal;}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}
button,input[type="button"],input[type="reset"],input[type="submit"]{
cursor:pointer;-webkit-appearance:button;}
input[type="search"]{
-webkit-appearance:textfield;-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;box-sizing:content-box;}
input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
textarea{overflow:auto;vertical-align:top;}
html {
-webkit-font-smoothing: antialiased; /* maxvoltar.com/archive/-webkit-font-smoothing */
/* http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
box-sizing: border-box;
}
*, *:after { box-sizing: inherit; }
body {
background: white url('img/back.gif');
margin: 7px 16px 7px 7px;
font-size: 16px;
line-height: 1.1em;
font-family: serif;
}
a:link { color: black; }
a:visited { color: #400040;}
#logo {
display: none;
width: 460px;
height: 70px;
margin: 0 auto;
}
#logo.show {
display: block;
}
#user {
font-weight: bold;
}
#others {
float: right;
}
#messageInput {
display: block;
width: 100%;
clear: both;
margin: 3px 0;
font-size: 1em;
font-family: serif;
}
#usertime {
font-style: italic;
}
#delmsg { display: none; }
.msgdiv {
border-top: solid gray 1px;
padding: 0.3em 2px 0.2em 5px;
clear: both;
margin-left: 3px;
}
.msgdiv.read {
margin-left: 0;
border-left: solid black 3px;
border-right: solid black 3px;
}
.msgdiv:not(.read) + .msgdiv.read,
.msgdiv.read:first-of-type {
border-top: dotted black 3px;
border-radius: 8px 16px 0 0;
}
.msgdiv img.avatar {
display: none;
float: left;
border: none;
margin: 0 5px 2px 0;
}
.msgdiv img.avatar.show {
display: block;
}
.msgdiv .msgbody {
margin-top: 0.4em;
clear: both;
white-space: pre-line;
}
.msgbody>img {
vertical-align: bottom;
}
#formatbuttons { float: right; }
.button {
display: inline-block;
border: solid black 1px;
border-radius: 3px;
padding: 2px 4px 0 4px;
text-align: center;
cursor: pointer;
height: 1.3em;
vertical-align: top;
box-shadow: 0 1px 2px #333;
}
.small {
min-width: 20px;
}
.button[title="Kibbitz"] {
float: left;
font-family: sans-serif;
font-size: 26px;
height: 34px;
line-height: 31px;
padding: 6px;
width: 34px;
margin-right: 4px;
border-radius: 50%;
}
.button[title="Link"] {
text-decoration:underline;
}
.button[title="Bold"] { font-weight: bold; }
.button[title="Italic"] { font-style: italic; }
.button[title="Color"] { color: red; font-family: sans-serif; }
.button[title="Size"] { font-family: sans-serif; }
.button[title="Monospace"] { font-family: monospace; }
.button[title="Underline"] span {
text-decoration: underline;
position: relative;
top: -1px;
pointer-events: none;
}
.button[title="Strike"] { text-decoration: line-through; }
.button[title="Blink"] b { pointer-events: none; }
.button[title="Spacing"] span {
position: relative;
bottom: 8px;
font-size: 1.5em;
pointer-events: none;
}
.button[title="Block Quote"] span {
position: relative;
top: 4px;
font-size: 1.5em;
font-weight: bold;
pointer-events: none;
}
.button:hover, div.highlight { background-color: #ff8; }
.button:active {
background-color: #bbf;
box-shadow: 0 4px 4px #333;
}
#emoticons, #specialchars, #styles {
margin-left: 5px;
display: none;
float: right;
text-align: right;
word-wrap: break-word;
}
#emoticons img:hover, #emobutton:hover {
border-radius: 0;
background-color: black;
}
#stylebutton { font-weight: bold; }
#emobutton {
vertical-align: middle;
border-radius: 50%;
box-shadow: 0 1px 2px #333;
}
#emobutton:active {
box-shadow: 0 4px 4px #333;
}
#emoticons img {
vertical-align: top;
}
s { text-decoration: line-through; }
u { text-decoration: underline; }
ins {
display: block;
margin-left: 1em;
text-decoration: none;
}
blockquote {
margin: 1px;
padding: 5px 30px;
background-image: url(img/blockquoted.png);
background-repeat: no-repeat;
background-position: 0 3px;
}
.qq-upload-button-hover { background:white; }
#fine-uploader {
height: 28px;
margin-left: 37px;
}
.qq-upload-drop-area {
font-family: Roboto, Arial, Helvetica, sans-serif;
font-size: 1.1em;
padding-top: 5px;
height: 28px;
min-height: initial;
}
.qq-upload-list li {
padding: 6px;
}
.userimg, .uservid {
vertical-align: middle;
display: inline-block;
image-orientation: from-image;
}
.userimg img {
max-width: 100%;
pointer-events: none;
}
.userimg.worksmall img {
max-width: 50px !important;
pointer-events: none;
}
.userimg.worksmall::after {
content: " " url(img/expand.png);
}
.userimg::after {
content: " " url(img/shrink.png);
}
.uservid.worksmall iframe {
width: 128px;
height: 96px;
}
.uservid.worksmall::after {
content: " " url(img/expand.png);
}
.uservid::after {
content: " " url(img/shrink.png);
}
img.close {
position: absolute;
right: 0;
top: 0;
}
#profile, #shame {
position: absolute;
display: none;
border: solid black 1px;
border-radius: 3px;
background-color: white;
box-shadow: 0 4px 4px 1px #333;
padding: 4px;
z-index: 1000;
}
#profile {
left: 0.45em;
background-image: url(img/profile.png);
background-repeat: no-repeat;
background-position: 0 3px;
}
#profile table {
margin-left: 102px;
}
#profile table tr:nth-of-type(6) {
border-bottom: solid gray 1px;
}
#profile input[type=range] {
position: relative;
top: 3px;
}
#Ptext {
font-weight: bold;
text-align: left;
font-size: 26px;
white-space: nowrap;
}
#shame {
right: 1.3em;
padding: 0 4px 4px 6px;
}
#hos {
font-weight: bold;
font-size: 20px;
padding-left: 1em;
}
#shame tr.uonline {
background-color: #ff8;
}
#profile td, #shame td {
padding: 0.3em 0.1em 0 0;
}
#profile table td:first-child, #shame table td:first-child {
font-weight: bold;
padding-right: 5px;
}
#shame table ul {
font-weight: normal;
padding-left: 1.3em;
}
#shame .client {
display: none;
}
#volume {
width: 12em;
margin-right: 3px;
}
#fontsize {
width: 10em;
margin-right: 3px;
}
#email {
width: 14.3em;
font-family: serif;
}
#myavatar {
position: absolute;
left: 13px;
bottom: 6px;
}
#avatarurl, #profile option {
font-family: serif;
}
#cloakroom {
max-height: 55px;
clear: both;
margin: 2px 0 0 102px;
}
#cloakroom img {
margin: 0 2px;
border: solid white 2px;
}
#cloakroom img:hover {
border-color: black;
}
#cloakroom img:active {
border-color: #bbf;
}
#helpdiv {
display: none;
position: absolute;
overflow: auto;
top: 200px;
left: 2%;
width: 90%;
background-color: white;
border: solid black 1px;
box-shadow: 0 4px 4px 1px #666;
padding: 15px;
z-index: 1000;
}
#helpdiv p {
margin: 0.4em 0;
line-height: 1.2em;
}
code {
font-family: monospace;
padding-left: 2em;
display: block;
}
blink {
animation: blink 1s steps(5, start) infinite;
-webkit-animation: blink 1s steps(5, start) infinite;
}
blink:hover, blink.hideme {
animation: none;
-webkit-animation: none;
}
blink.hideme {
background-color: #ffa;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
html {
-webkit-text-size-adjust: none;
text-size-adjust: none;
}
#logo {
width: 302px;
height: 50px;
}
#usertime {
max-width: 64px;
overflow: hidden;
}
#others {
overflow: hidden;
}
}
</style>
<!-- Fine uploader template -->
<script type="text/template" id="qq-template">
<div class="qq-uploader-selector qq-uploader" qq-drop-area-text="Drop files here to upload">
<div class="qq-total-progress-bar-container-selector qq-total-progress-bar-container">
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-total-progress-bar-selector qq-progress-bar qq-total-progress-bar"></div>
</div>
<div class="qq-upload-drop-area-selector qq-upload-drop-area" qq-hide-dropzone>
Drop files here to upload
<span class="qq-upload-drop-area-text-selector"></span>
</div>
<div class="qq-upload-button-selector qq-upload-button">
<div>Upload a file</div>
</div>
<span class="qq-drop-processing-selector qq-drop-processing">
<span>Processing dropped files...</span>
<span class="qq-drop-processing-spinner-selector qq-drop-processing-spinner"></span>
</span>
<ul class="qq-upload-list-selector qq-upload-list" aria-live="polite" aria-relevant="additions removals">
<li>
<div class="qq-progress-bar-container-selector">
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-progress-bar-selector qq-progress-bar"></div>
</div>
<span class="qq-upload-spinner-selector qq-upload-spinner"></span>
<span class="qq-upload-file-selector qq-upload-file"></span>
<span class="qq-edit-filename-icon-selector qq-edit-filename-icon" aria-label="Edit filename"></span>
<input class="qq-edit-filename-selector qq-edit-filename" tabindex="0" type="text">
<span class="qq-upload-size-selector qq-upload-size"></span>
<button type="button" class="qq-btn qq-upload-cancel-selector qq-upload-cancel">Cancel</button>
<button type="button" class="qq-btn qq-upload-retry-selector qq-upload-retry">Retry</button>
<button type="button" class="qq-btn qq-upload-delete-selector qq-upload-delete">Delete</button>
<span role="status" class="qq-upload-status-text-selector qq-upload-status-text"></span>
</li>
</ul>
<dialog class="qq-alert-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">Close</button>
</div>
</dialog>
<dialog class="qq-confirm-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">No</button>
<button type="button" class="qq-ok-button-selector">Yes</button>
</div>
</dialog>
<dialog class="qq-prompt-dialog-selector">
<div class="qq-dialog-message-selector"></div>
<input type="text">
<div class="qq-dialog-buttons">
<button type="button" class="qq-cancel-button-selector">Cancel</button>
<button type="button" class="qq-ok-button-selector">Ok</button>
</div>
</dialog>
</div>
</script>
</head>
<body>
<img id="logo" src="img/title.gif" title="Jack Rabbit Slim's" />
<span id="user" class="button">?</span>
<div id="profile"></div>
<span id="others" class="button"><i>Connecting...</i></span>
<div id="shame"></div>
<textarea id="messageInput" placeholder="Enter message" rows="3"></textarea>
<img id="kibbitz" class="button" title="Kibbitz" src="img/plus.png" />
<span id="usertime" class="button">Loading...</span>
<span id="delmsg" class="button" title="Delete/edit last post">✂</span>
<span id="formatbuttons">
<span class="button" title="Link">link</span>
<span class="button" title="Image">img</span>
<span id="fileup" class="button" title="File Upload">↑file</span>
<span id="stylebutton" class="button" title="Styles">Τ</span>
<span id="spcbutton" class="button" title="Special Characters">♥</span>
<img id="emobutton" src="e/blank.gif" title="Emoticons" />
</span>
<span id="emoticons">
<img src="e/koolaid.gif" title="kool-aid" />
<img src="e/heart.gif" title="heart" />
<img src="e/old.gif" title="old" />
<img src="e/thumbsup.gif" title="thumbs-up" />
<img src="e/elvis.png" title="elvis" />
<img src="e/poo.png" title="poo" />
<img src="e/eyeroll.gif" title="eyeroll" />
<img src="e/crying.gif" title="crying" />
<img src="e/clap.gif" title="clap" />
<img src="e/shame.gif" title="shame" />
<img src="e/tmi.gif" title="tmi" />
<img src="e/earplug.gif" title="earplug" />
<img src="e/shhh.gif" title="shhh" />
<img src="e/dead.png" title="dead" />
<img src="e/happyno.gif" title="no" />
<img src="e/yes.gif" title="yes" />
<img src="e/insomnia.gif" title="insomnia" />
<img src="e/yawn.gif" title="yawn" />
<img src="e/bleh.gif" title="bleh" />
<img src="e/sweat.gif" title="sweat" />
<img src="e/pirate.gif" title="pirate" />
<img src="e/blushing.gif" title="blushing" />
<img src="e/devil.gif" title="devil" />
<img src="e/sealed.gif" title="sealed" />
<img src="e/braces.gif" title="braces" />
<img src="e/undecided.gif" title="undecided" />
<img src="e/innocent.gif" title="innocent" />
<img src="e/yelling.gif" title="yelling" />
<img src="e/headbang.gif" title="headbang" />
<img src="e/surprise.gif" title="surprise" />
<img src="e/cool.gif" title="cool" />
<img src="e/wink.gif" title="wink" />
<img src="e/tongue.gif" title="tongue" />
<img src="e/laughing.gif" title="laughing" />
<img src="e/lol.gif" title="lol" />
<img src="e/frown.gif" title="frown" />
<img src="e/smile.gif" title="smile" />
</span>
<span id="specialchars">
<!-- <span class="special button">😀</span> Unicode emoticons
<span class="special button">😇</span>
-->
<span class="special button">♥</span>
<span class="special button">♪</span>
<span class="special button">♫</span>
<span class="special button">¡</span>
<span class="special button">¿</span>
<span class="special button">ñ</span>
<span class="special button">—</span>
<span class="special button">€</span>
<span class="special button">¢</span>
<span class="special button">½</span>
<span class="special button">“</span>
<span class="special button">”</span>
<span class="special button">&</span>
<span class="special button"><</span>
<span class="special button">></span>
<span class="special button">•</span>
<span class="special button">°F</span>
<span class="special button">°C</span>
</span>
<span id="styles">
<span class="button small" title="Block Quote"><span>“</span></span>
<span class="button small" title="Spacing"><span>␣</span></span>
<span class="button small" title="Indent">⇥</span>
<span class="button small" title="Blink"><blink><b>!</b></blink></span>
<span class="button small" title="Strike">X</span>
<span class="button small" title="Underline"><span>U</span></span>
<span class="button small" title="Monospace">M</span>
<span class="button small" title="Size">S</span>
<span class="button small" title="Color">C</span>
<span class="button small" title="Italic">I</span>
<span class="button small" title="Bold">B</span>
</span>
<div style="height: 3px"></div>
<div id="fine-uploader"></div>
<div id="messagesDiv"></div>
<div id="helpdiv">
<img class="close" src="img/close_icon.gif" />
<h2>Jack Rabbit Slims Guide</h2>
<h3>First Time</h3>
<p>When you visit Slims, it will ask you for your ID. If you already have one, type it in.
Otherwise, pick one using the characters A-Z a-z 0-9 _ and space.
Yes, you can have a space in your ID; for example: "Jack at Work".</p>
<p>The first time you enter Slims, it will open a profile window for you (in addition to this help page).
Enter your email address and select an avatar.</p>
<p>To make it easier to access Slims, type in the Slims URL into your browser,
followed by a question mark and then your ID.
For example, if your ID is "jack", use:
<code><span class="scripturl"></span>?jack</code>
If your ID contains a space character, use "%20" instead of a space; for example:
<code><span class="scripturl"></span>?Jack%20at%20Work</code>
Enter Slims and then set a bookmark on your browser to that page.</p>
<p>You can also override your profile in your bookmark.
For example, if you want to use a different email address on your work computer, set a bookmark like:
<code><span class="scripturl"></span>?id=jack&[email protected]</code>
You can also override "work", "fontsize", "modifierkey", "enterkey", and "avatar".</p>
<h3>Using Slims</h3>
<p>Inside Slims, you can click on the following things:
the Jack Rabbit Slims logo to see this help page;
your ID button (upper left) to see and edit your profile;
the "On" button (upper right) to see when people connected and disconnected;
the "+" button to post a message;
the current time button to update the current time;
and the formatting buttons.</p>
<p>The formatting buttons are:
"link" to create a link,
"img" to create an image from a URL,
"↑file" to upload an image or other file from your local computer,
"T" to style some text,
"♥" to insert special characters,
and the yellow circle to insert an emoticon.
You can also drag and drop files (including images) onto Slims to upload them from your local computer.</p>
<p>
If you click the "T" button, you get several options to style any selected text:
"<font size="+2">“</font>" for a blockquote,
"␣" to preserve spacing,
"⇥" to indent a block of text,
"!" to make text blink,
"X" to Strike (cross out) some text,
"U" to underline some text,
"M" to use a monospaced font,
"S" to change the size of text,
"C" to change the color of text,
"I" to make text italic,
and "B" to make text bold.
</p>
<p>Click on any message to mark that you have seen it (and all messages below it).
This is not required, it just helps you remember what messages you have read.</p>
<p>In addition to clicking on the "+" button, you can submit a message to Slims by
holding down the Shift key on your keyboard and hitting the Return key
(you can change both the modifier key and the enter key in your profile).
If you do either of these when you have not typed in a message, Slims will update the message times.</p>
<p>After you post a message, a new icon with scissors in it will appear.
This button removes your last message and places it back into the input box,
so you can edit it (or just delete it entirely). Remember that you have to
repost the message after you are done editing it. You can only do this to your
most recent message, and only until you reload slims.</p>
<p>In work mode, the "Jack Rabbit Slims" logo disappears, as do the user avatar icons.
In addition, any images or videos posted by users are shrunk down to thumbnails.
To see the full sized media, just click on it (or the + button beside it).
To shrink it back down, click on it again (or on the – button).</p>
<p>You can access this help page again by clicking on the "Jack Rabbit Slims" logo (except in work mode).</p>
</div>
</body>
</html>