diff options
author | xengineering <me@xengineering.eu> | 2024-03-07 19:41:20 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-10 10:15:24 +0100 |
commit | be01755f44442c0fa174a2c7fe3dfd39f185920f (patch) | |
tree | 64ebf3804581472110d76d615aaa49fa36dce45a /view/html/recipe-confirm-deletion.html | |
parent | 1975f922a7525fc2725808d55a3c7e07849ae93f (diff) | |
download | ceres-be01755f44442c0fa174a2c7fe3dfd39f185920f.tar ceres-be01755f44442c0fa174a2c7fe3dfd39f185920f.tar.zst ceres-be01755f44442c0fa174a2c7fe3dfd39f185920f.zip |
view: Remove nested anchor and button elements
There is the need to add buttons to the recipe server which act like a
anchor tag (link). This can be achieved by nesting anchor and button
tag.
The problem is that if the user cycles through the elements of the page
with the 'tab' key such a button is handled as two overlapping elements
instead of one.
This commit solves the issue by using buttons with the attribute
`onclick="window.location.href='<url>';`.
Diffstat (limited to 'view/html/recipe-confirm-deletion.html')
-rw-r--r-- | view/html/recipe-confirm-deletion.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/html/recipe-confirm-deletion.html b/view/html/recipe-confirm-deletion.html index 74d6ede..7ad08a3 100644 --- a/view/html/recipe-confirm-deletion.html +++ b/view/html/recipe-confirm-deletion.html @@ -9,7 +9,7 @@ <body> <main> <p>Do you really want to delete this recipe?</p> - <a href="/recipe/{{.Id}}"><button type="button">cancel</button></a> + <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> <button onclick="del('/recipe/{{.Id}}')" style="background-color:red">delete</button> </main> {{ template "footer" }} |