From d8b40f0a0a2ac2bcb8b9b690166ae7594c067298 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 15 May 2024 19:20:01 +0200 Subject: When adding a recipe step or an ingredient the browser should focus on the first text input of that new element. This supports using Ceres without a mouse and only with tab-based navigation with a keyboard. --- view/static/ceres.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/view/static/ceres.js b/view/static/ceres.js index 2405a59..91417a7 100644 --- a/view/static/ceres.js +++ b/view/static/ceres.js @@ -103,6 +103,7 @@ function addNewStep() { let step = template.content.cloneNode(true); steps.appendChild(step); + steps.lastElementChild.firstElementChild.focus(); } function addNewIngredient(button) { @@ -112,4 +113,5 @@ function addNewIngredient(button) { let ingredient = template.content.cloneNode(true); ingredients.appendChild(ingredient); + ingredients.lastElementChild.firstElementChild.focus(); } -- cgit v1.2.3-70-g09d2