forked from AlderArts/foe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foe_min.html
39 lines (36 loc) · 1.1 KB
/
foe_min.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Main page title -->
<title>Fall of Eden</title>
<!-- Set up CSS styles -->
<link rel="stylesheet" type="text/css" href="style.css" />
<!--[if IE]><script type="text/javascript" src="excanvas.compiled.js"></script><![endif]-->
</head>
<body onresize="Gui.onresize()">
<div id=wrap>
<div id="mainTextWrapper">
<div id="mainTextArea"> </div>
</div>
<input id="textInputArea"/>
<div id="tooltipTextArea"> </div>
<div class="overlay" id="overlay_load">
<div>
<p>Load a file from disk:</p>
<input type="file" id="loadFileFiles" />
<br/>
<button type="submit" id="loadFileOk" onclick="Saver.OnLoadFromFileClick()">Ok</button>
<button type="button" id="loadFileCancel" onclick="loadfileOverlay()">Cancel</button>
</div>
</div>
<div class="overlay" id="overlay_assets">
<div>
<p id="progressDiv">Loading</p>
</div>
</div>
</div>
<!-- Load script files -->
<script type="text/javascript" src="foe.js"></script>
</body>
</html>