summaryrefslogtreecommitdiff
path: root/view/static
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-12 20:38:24 +0200
committerxengineering <me@xengineering.eu>2024-05-12 20:38:24 +0200
commitfec2fea87615e6ee3a6e73f7f98e021eee1b7098 (patch)
tree7eec27ba0c4a1cfaccc18e0f3018cece9d9b9a6f /view/static
parent64ece1c4455ed6f8e8be5cb8f060f14b6131823f (diff)
downloadceres-fec2fea87615e6ee3a6e73f7f98e021eee1b7098.tar
ceres-fec2fea87615e6ee3a6e73f7f98e021eee1b7098.tar.zst
ceres-fec2fea87615e6ee3a6e73f7f98e021eee1b7098.zip
view: Use HTML template to add recipe steps
This makes the JS function way simpler and removes a duplication of the step HTML code.
Diffstat (limited to 'view/static')
-rw-r--r--view/static/ceres.js11
1 files changed, 4 insertions, 7 deletions
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 = `
- <textarea rows="4" cols="50" placeholder="Step description"></textarea>
- <button type="button" onclick="parentNode.remove();">remove</button>
- `;
+ 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);
}