From 52ab5dbcfa6a4344a70526d9b27ed32fef506619 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Wed, 15 Oct 2025 19:57:16 -0600 Subject: [PATCH] instead of clearing, highlight said --- src/public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/index.html b/src/public/index.html index 9623c06..2f67557 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -127,7 +127,7 @@ ws.send(data); print("SENT: " + input.value); - input.value = ""; + input.select(); if (document.getElementById("listen").checked) { ws.onmessage({data: data}); }