diff options
author | xengineering <me@xengineering.eu> | 2023-03-31 22:00:01 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-01 15:20:46 +0200 |
commit | eec9ddfd687a871880628b4a5e9b3c0541b534e2 (patch) | |
tree | 3e313ea4c2762c00ae0db85bf00b48914101a0ae | |
parent | 39298f14d366b351708e7f5ef30d1b6575155792 (diff) | |
download | ceres-eec9ddfd687a871880628b4a5e9b3c0541b534e2.tar ceres-eec9ddfd687a871880628b4a5e9b3c0541b534e2.tar.zst ceres-eec9ddfd687a871880628b4a5e9b3c0541b534e2.zip |
Make Markdown editable
-rw-r--r-- | data/templates/recipe_edit.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index 04804b4..d622ce1 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -15,11 +15,18 @@ <main> <p>Recipe ID: {{.Id}}</p> - <pre contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre> - <button>save</button> <!-- TODO add functionality --> + <pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre> + <button onclick="save()">save</button> <a href="/recipe?id={{.Id}}"><button>cancel</button></a> - <button style="background-color: red">delete</button> <!-- TODO add functionality --> {{ template "footer.html" }} </main> + + <script> + function save() { + const xhttp = new XMLHttpRequest(); + xhttp.open("POST", "/recipe/edit?id={{.Id}}", true); + xhttp.send(document.getElementById('editor').innerText); + } + </script> </body> </html> |