- Add Itch.io build - Bug fix: replace the removed "arcade coin" key with the bank vector
29 lines
857 B
HTML
29 lines
857 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
|
|
<html lang="en-US">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="embed_style.css" type="text/css" />
|
|
</head>
|
|
|
|
<body>
|
|
<p id="loading">
|
|
Loading...
|
|
</p>
|
|
|
|
<!-- Emscripten's module object will update this canvas with WebGL content. -->
|
|
<canvas id="canvas"></canvas>
|
|
|
|
<!-- This file is built by Emscripten when compiling the program -->
|
|
<script src="cakefoot_itch.js"></script>
|
|
|
|
<script>
|
|
/* Fix keyboard input inside an iframe (see https://github.com/emscripten-core/emscripten/issues/5796) */
|
|
document.getElementById("canvas").addEventListener("click", () => {
|
|
window.focus();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|