From 1e3fde25b9f6d8adbdf087a51a34dc35cc1907d8 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sun, 4 Sep 2022 22:30:31 +0200 Subject: undo dom stuff --- webAO/dom/onOOCEnter.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 webAO/dom/onOOCEnter.ts (limited to 'webAO/dom/onOOCEnter.ts') diff --git a/webAO/dom/onOOCEnter.ts b/webAO/dom/onOOCEnter.ts deleted file mode 100644 index a24928b..0000000 --- a/webAO/dom/onOOCEnter.ts +++ /dev/null @@ -1,16 +0,0 @@ -import {client} from '../client' -/** - * Triggered when the Return key is pressed on the out-of-character chat input box. - * @param {KeyboardEvent} event - */ - export function onOOCEnter(event: KeyboardEvent) { - if (event.keyCode === 13) { - client.sendOOC( - (document.getElementById("client_oocinputbox")).value - ); - (document.getElementById("client_oocinputbox")).value = - ""; - } - } - window.onOOCEnter = onOOCEnter; - \ No newline at end of file -- cgit