js: When opening a dialogue box, try to focus it

This will make using menus from the keyboard more convenient.
This commit is contained in:
Ben Harris
2022-11-24 16:37:26 +00:00
parent ebb7b4277e
commit 3150d72800

View File

@ -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() {