-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (79 loc) · 3.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML5 Across Lite Reader</title>
<link rel="stylesheet" type="text/css" href="css/xw.css" />
</head>
<body>
<div id="dropzone">
<h1>HTML5 Across Lite Reader</h1>
<p><strong>Simply drag & drop a <tt>.puz</tt> file
here</strong>, and I'll make you a crossword. No files will be
sent to the server, this is entirely done using your modern Web
browser. Note that this only currently works with the following
HTML5-compatible browsers:</p>
<ul>
<li>Google Chrome 4+</li>
<li>Mozilla Firefox 3.6+</li>
</ul>
</div>
<div style="padding: 2px 8px"><small>© 2011 Derek Slager <a target="_blank" href="http://mailhide.recaptcha.net/d?k=01WnaA8vt0Lj6zPRCcSFkJ5Q==&c=kjdR00HQ0VxdEFr-SuSzLvKG19ddBbKSwBJTL4-OAIg=">Feedback</a></small></div>
<table id="help" style="display: none">
<tbody>
<tr>
<td class="k"><kbd>UP</kbd>/<kbd>DOWN</kbd>/<kbd>LEFT</kbd>/<kbd>RIGHT</kbd></td>
<td>Moves around the grid or changes direction.</td>
</tr>
<tr>
<td class="k"><kbd>CTRL</kbd> + <kbd>UP</kbd>/<kbd>DOWN</kbd>/<kbd>LEFT</kbd>/<kbd>RIGHT</kbd></td>
<td>Change current direction.</td>
</tr>
<tr>
<td class="k"><kbd>SHIFT</kbd> + <kbd>UP</kbd>/<kbd>DOWN</kbd>/<kbd>LEFT</kbd>/<kbd>RIGHT</kbd></td>
<td>Moves to the previous or next clue.</td>
</tr>
<tr>
<td class="k"><kbd>HOME</kbd>/<kbd>END</kbd></td>
<td>Moves to the first or last square in the current word.</td>
</tr>
<tr>
<td class="k"><kbd>SHIFT</kbd> + <kbd>HOME</kbd>/<kbd>END</kbd></td>
<td>Moves to the first or last square in the puzzle.</td>
</tr>
<tr>
<td class="k"><kbd>TAB</kbd>/<kbd>ENTER</kbd></td>
<td>Moves to the next word.</td>
</tr>
<tr>
<td class="k"><kbd>SHIFT</kbd> + <kbd>TAB</kbd>/<kbd>ENTER</kbd></td>
<td>Moves to the previous word.</td>
</tr>
<tr>
<td class="k"><kbd>DELETE</kbd></td>
<td>Erases the current square value.</td>
</tr>
<tr>
<td class="k"><kbd>BACKSPACE</kbd></td>
<td>Erases the current square value and moves to the previous
square, if possible.</td>
</tr>
<tr>
<td class="k"><kbd>SPACE</kbd></td>
<td>Erases the current square and moves to the next square, if
possible.</td>
</tr>
<tr>
<td class="k"><kbd>INSERT</kbd>/<kbd>F2</kbd></td>
<td>Opens the rebus entry dialog.</td>
</tr>
</tbody>
</table>
<script type="text/javascript" src="js/xw.js"></script>
<!-- <script type="text/javascript" src="http://nullptr:9810/compile?id=xwordhtml&mode=RAW"></script> -->
<script type="text/javascript">
var app = new derekslager.xword.XwordHtml();
app.load();
</script>
<script type="text/javascript">var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-704231-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = 'http://www.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();</script>
</body>
</html>