From f9063ee35f2bfce4dca9945ec8a7d9bf75935351 Mon Sep 17 00:00:00 2001 From: etherware-novice <73374039+etherware-novice@users.noreply.github.com> Date: Sat, 9 Nov 2024 10:52:51 -0600 Subject: [PATCH] finally fixed the homepage page enter thing --- personal/webboot/index.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/personal/webboot/index.html b/personal/webboot/index.html index 7f7f2c0..d4f4aa2 100644 --- a/personal/webboot/index.html +++ b/personal/webboot/index.html @@ -135,5 +135,14 @@ layout: null dispLink(); setInterval(updateFancyTime, 1000); + + document.getElementById("searchbar"). + addEventListener('keydown', (e) => { + if (e.key === 'Enter') + { + e.preventDefault(); + searchwww(); + } + });