aboutsummaryrefslogtreecommitdiff
path: root/index.js
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2025-11-13 21:49:33 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2025-11-13 21:49:33 +0100
commit4693fcf941e1ab30821b8d514beb5d79e5e2b20a (patch)
tree3a654c04f95c0668a428e4223ca202d8e5fb547f /index.js
parent944fc2715e967a51e4ccca49d87e987ee2727bc2 (diff)
Cleaned up the home folder
Diffstat (limited to 'index.js')
-rw-r--r--index.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/index.js b/index.js
deleted file mode 100644
index 9494abb..0000000
--- a/index.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import { GameManager } from "./game.mjs";
-
-// Court and player handling
-let g = new GameManager();
-
-// Game handling
-document.getElementById("propose").addEventListener("click", () => {
- g.propose();
-});
-document.getElementById("confirm").addEventListener("click", () => {
- g.confirm();
-});
-document.getElementById("reset").addEventListener("click", () => {
- g.reset();
-});