From fec2fea87615e6ee3a6e73f7f98e021eee1b7098 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 12 May 2024 20:38:24 +0200 Subject: view: Use HTML template to add recipe steps This makes the JS function way simpler and removes a duplication of the step HTML code. --- view/static/ceres.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'view/static') diff --git a/view/static/ceres.js b/view/static/ceres.js index abd5f30..43b8290 100644 --- a/view/static/ceres.js +++ b/view/static/ceres.js @@ -87,12 +87,9 @@ function updateRecipe(event) { } function addNewStep() { - var newStep = document.createElement("section"); - newStep.innerHTML = ` - - - `; + let template = document.getElementById("recipe-step-template"); + let steps = document.getElementById("steps"); - var steps = document.querySelector("#steps"); - steps.appendChild(newStep); + let step = template.content.cloneNode(true); + steps.appendChild(step); } -- cgit v1.2.3-70-g09d2