diff options
author | xengineering <me@xengineering.eu> | 2024-05-12 20:01:02 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-12 20:01:02 +0200 |
commit | cfeff398f0ad7e4205dc26b66ca2b46ebca24606 (patch) | |
tree | 8926c09221277ba63591594a198ca0d48e53e50d | |
parent | 642fed1cbf5160c89a93deab810bd44fb49d2a4a (diff) | |
download | ceres-cfeff398f0ad7e4205dc26b66ca2b46ebca24606.tar ceres-cfeff398f0ad7e4205dc26b66ca2b46ebca24606.tar.zst ceres-cfeff398f0ad7e4205dc26b66ca2b46ebca24606.zip |
view: Remove global JS code in recipe-edit.html
This makes it impossible to move the whole JS functionality into the
central ceres.js script. Moving that JS code there makes caching
possible and bundles all JS-related code in one file.
The overall goal is to get rid of as many JS code as possible.
-rw-r--r-- | view/html/recipe-edit.html | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index 9980e75..f2695f0 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -8,7 +8,7 @@ <h1>Recipe editor</h1> </header> <main> - <form action="/recipe{{if ne .Id ""}}/{{.Id}}{{end}}"> + <form action="/recipe{{if ne .Id ""}}/{{.Id}}{{end}}" onsubmit="updateRecipe(event)"> <input type="hidden" name="id" value="{{.Id}}"> <p><input type="text" name="title" value="{{.Title}}" placeholder="Title" required></p> @@ -32,11 +32,6 @@ {{ template "footer" }} <script src="/static/view/static/ceres.js"></script> <script> - var forms = document.querySelectorAll('form'); - forms.forEach(form => { - form.addEventListener('submit', updateRecipe); - }); - function updateRecipe(event) { event.preventDefault(); |