From 3150d72800ec9f49001bf568df224375ea133747 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 24 Nov 2022 16:37:26 +0000 Subject: js: When opening a dialogue box, try to focus it This will make using menus from the keyboard more convenient. --- emccpre.js | 1 + 1 file changed, 1 insertion(+) diff --git a/emccpre.js b/emccpre.js index 318f799..8e957a0 100644 --- a/emccpre.js +++ b/emccpre.js @@ -251,6 +251,7 @@ function dialog_launch(ok_function, cancel_function) { document.body.appendChild(dlg_dimmer); document.body.appendChild(dlg_form); + dlg_form.querySelector("input,select,a").focus(); } function dialog_cleanup() { -- cgit v1.1