diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-07-20 21:40:25 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-07-20 21:46:31 +0700 |
commit | 1b7bf9833d37246397f117f4ce6d95ae7211349b (patch) | |
tree | 3b7d3d805c2d2be05c6cc7a0cfce57f22cd24e75 /docs/index.html | |
parent | d3839f160e5020967b2b23bd21ebd7c941012162 (diff) | |
download | brutalmaze-1b7bf9833d37246397f117f4ce6d95ae7211349b.tar.gz |
Use Sphinx to replace wiki
Diffstat (limited to 'docs/index.html')
-rw-r--r-- | docs/index.html | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index b7f164b..0000000 --- a/docs/index.html +++ /dev/null @@ -1,28 +0,0 @@ -<!DOCTYPE html> -<html> -<meta charset='utf-8'> -<title>Brutal Maze record player</title> -<link rel='stylesheet' type='text/css' href='style.css'> -<script src='brutalma.js'></script> - -<body> -<div id='input'> - <input id='record' type='text' name='record' value='example.json'> - <input id='button' type='button' value='Play JSON record'> -</div> -<canvas id='canvas' width='640' height='480'></canvas> -<script> - // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0 - var canvas = document.getElementById('canvas'); - resizeCanvas(canvas); - window.onresize = function() {resizeCanvas(canvas)}; - document.getElementById('record').onkeypress = function (event) { - if (event.key == 'Enter') { - playJSON(); - } - }; - document.getElementById('button').onclick = playJSON; - // @license-end -</script> -</body> -</html> |