forked from bpa/burgle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 2.15 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
<!doctype html>
<html lang="en" manifest="cache.manifest">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black translucent" />
<title>Room Generator</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="img/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="img/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="img/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="img/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/apple-touch-icon-152x152.png" />
<link rel="stylesheet" type="text/css" href="css/burgle.css">
<script type="text/javascript" src="js/burgle.js"></script>
</head>
<body onLoad="Burgle.init()">
<select id="job" onChange="Burgle.newJob()">
<option value="2:4:8:190m3:11hu0">The Office Job (Intro)</option>
<option value="3:4:8:703h1:e0607:81ll0" selected="selected">The Bank Job (Standard)</option>
<option value="2:5:12::">Fort Knox (Expert)</option>
</select>
<div id="floors"></div>
<br clear="all" />
<div id="burgle_ctrl">
<button onClick="Burgle.generate()">Generate All Floors</button>
<input type="checkbox" id="toggle_heatmap" onchange="Burgle.toggleHeatmap()" /><label for="toggle_heatmap">Show Heatmap</label>
<div id="links">
<a id="burgle_href" href="#">Permalink to current layout</a>
<br />
<a id="burgle_default_href" href="#">Default for this layout</a>
</div>
</div>
</body>
</html>