-
Notifications
You must be signed in to change notification settings - Fork 28
/
emglkenplay.html
61 lines (53 loc) · 1.61 KB
/
emglkenplay.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
<!DOCTYPE html>
<html>
<head>
<title>Lectrote</title>
<link rel="stylesheet" href="./fonts.css" type="text/css">
<link rel="stylesheet" href="./el-glkote.css" type="text/css">
<link id="bodycss" rel="stylesheet" href="./play.css" type="text/css">
<script type="text/javascript">
game_options = {
spacing: 4,
outspacingx: 0,
outspacingy: 16,
use_query_story: false,
set_page_title: true,
font_load_delay: true,
do_vm_autosave: false
};
window.$ = window.jQuery = require('./quixe/lib/jquery-1.12.4.min.js');
if (!game_options.use_unminified_js) {
var elkote_mods = require('./quixe/lib/elkote.min.js');
window.GlkOte = elkote_mods.GlkOte;
window.BlorbClass = elkote_mods.BlorbClass;
window.Dialog = elkote_mods.Dialog;
var quixe_mods = require('./quixe/lib/quixe.min.js');
window.GiLoad = quixe_mods.GiLoad;
}
else {
window.GlkOte = require('./quixe/src/glkote/glkote.js').GlkOte;
window.BlorbClass = require('./quixe/src/glkote/gi_blorb.js').BlorbClass;
window.Dialog = require('./quixe/src/glkote/electrofs.js').Dialog;
window.GiLoad = require('./quixe/src/quixe/gi_load.js').GiLoad;
}
require('./apphooks.js');
</script>
</head>
<body>
<div id="content">
<div id="gameport">
<div id="windowport">
<noscript><hr>
<p>You'll need to turn on Javascript in your web browser to play this game.</p>
<hr></noscript>
</div>
<div id="loadingpane">
<img src="quixe/media/waiting.gif" alt="LOADING"><br>
<em> Loading...</em>
</div>
<div id="errorpane" style="display:none;"><div id="errorcontent">...</div></div>
</div>
<div id="searchbar" class="CanHaveInputFocus">SHADOW</div>
</div>
</body>
</html>