blob: d7ec21b4693e003c57749626bfba8dc30c9b7a82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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.sender.sendOOC(
(<HTMLInputElement>document.getElementById("client_oocinputbox")).value
);
(<HTMLInputElement>document.getElementById("client_oocinputbox")).value =
"";
}
}
window.onOOCEnter = onOOCEnter;
|