From 15a225e68ffb1ad219f8882f2fb0b7de6a5582e2 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Sat, 20 Sep 2025 12:18:32 -0700 Subject: [PATCH] comments --- src/js/dom.ts | 3 +-- src/js/focus.ts | 3 +-- src/js/input.ts | 3 +-- src/js/resize.ts | 3 +-- src/js/shell.ts | 5 +++-- src/js/vram.ts | 3 +-- src/js/websocket.ts | 3 +-- 7 files changed, 9 insertions(+), 14 deletions(-) diff --git a/src/js/dom.ts b/src/js/dom.ts index 7e0a01a..7bc06af 100644 --- a/src/js/dom.ts +++ b/src/js/dom.ts @@ -1,6 +1,5 @@ //// -// dom helpers and cached elements -// +// DOM helpers and cached elements // finds an element by ID export const $ = (id: string): HTMLElement | null => diff --git a/src/js/focus.ts b/src/js/focus.ts index c8ce8d1..8e4c00c 100644 --- a/src/js/focus.ts +++ b/src/js/focus.ts @@ -1,6 +1,5 @@ //// -// try to keep the command textbox focused at all times -// +// We try to keep the command textbox focused at all times. import { cmdTextbox } from "./dom.js" diff --git a/src/js/input.ts b/src/js/input.ts index 01f807d..5d6eaff 100644 --- a/src/js/input.ts +++ b/src/js/input.ts @@ -1,6 +1,5 @@ //// -// input is handled by a