-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_index.html
More file actions
94 lines (87 loc) · 3.77 KB
/
run_index.html
File metadata and controls
94 lines (87 loc) · 3.77 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<!--
Copyright 2010 by Dan Fabulich.
Dan Fabulich licenses this file to you under the
ChoiceScript License, Version 1.0 (the "License"); you may
not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.choiceofgames.com/LICENSE-1.0.txt
See the License for the specific language governing
permissions and limitations under the License.
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0, maximum-scale = 1.0">
<!-- INSERT correct meta values -->
<title>Multiple Choice Example Game | My First ChoiceScript Game</title>
<script>window.version="UNKNOWN"</script>
<script src="lib/jquery/jquery-1.11.3.min.js"></script>
<script src="node_modules/cside-choicescript/web/persist.js"></script>
<script src="node_modules/cside-choicescript/web/alertify.min.js"></script>
<script src="node_modules/cside-choicescript/web/util.js"></script>
<style id="dynamic"></style>
<script src="node_modules/cside-choicescript/web/ui.js"></script>
<script src="node_modules/cside-choicescript/web/scene.js"></script>
<script src="node_modules/cside-choicescript/web/navigator.js"></script>
<script src="js/cs_override.min.js"></script>
<script src="mods/choicescript-plus.js"></script>
<!-- <script src="mods/smPlugin.js"></script> -->
<script src="mods/cs-console.js"></script>
<link href="node_modules/cside-choicescript/web/alertify.css" rel="stylesheet" type="text/css">
<link href="node_modules/cside-choicescript/web/style.css" rel="stylesheet" type="text/css">
<meta name="apple-mobile-web-app-capable" content="yes" />
<script>
// INSERT store name; disabled by default because it's confusing for newbie authors
window.storeName = "CSIDE";
//Scene.generatedFast = true;
var rootDir = "../";
</script>
</head>
<body><div class="container" id="container1">
<div id="advertisement">
</div>
<div id="header">
<div id="identity"><a href="#" id="email">you@example.com</a><a href="#" id="logout">Sign Out</a></div>
<h1 class="gameTitle">My First ChoiceScript Game</h1>
<h2 id="author" class="gameTitle"><!--by INSERTINSERTINSERT --></h2>
<p id="headerLinks">
<!-- <a href="credits.html" id="aboutLink" class="spacedLink">About</a> -->
</p>
<p id="buttons">
<button id="statsButton" class="spacedLink" onclick="showStats()">Show Stats</button>
<button id="restartButton" class="spacedLink" onclick="restartGame('prompt')">Restart</button>
<button id="achievementsButton" onclick="showAchievements()" class="spacedLink" style="display: none">Achievements</button>
<button id="bugButton" onclick="reportBug()" class="spacedLink" style="display: none">Report Bug</button>
<button id="menuButton" onclick="textOptionsMenu()" class="spacedLink">Settings</button>
</p>
</div>
<div id="main">
<div id="text">
</div>
<script>
startLoading();
</script>
</div>
<div id="mobileLinks" class="webOnly">
</div>
<noscript>
<p>This game requires JavaScript; please enable JavaScript and refresh this page.</p>
</noscript>
<script type="text/javascript">
if (window.parent && window.parent.cside) { //only load step-through mod if we're not a pop-out
var head = document.getElementsByTagName("head")[0];
if (head) {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "mods/step-through.js";
head.appendChild(script);
}
}
</script>
</body>
</html>