From 650861e6b7369b838e111b74c074860e4ff375e8 Mon Sep 17 00:00:00 2001 From: Conrad Zelck <git@simpel.cc> Date: Fri, 10 Dec 2021 18:28:49 +0000 Subject: [PATCH] fix: define type of buttons Both buttons are no type submit but that is defined aas default. So I wrote type="button" now to be right according html5. Signed-off-by: Conrad Zelck <git@simpel.cc> --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 75e512f..35e35b6 100644 --- a/index.html +++ b/index.html @@ -34,9 +34,9 @@ <p>If you set the option "output unique lines only" all lines existing more then once are deleted.</p> </details> <div class="flex"> - <button class="button pastesortunique" title="click: paste + sort + unique + copy to clipboard" onclick="paste()">Paste, Sort & Copy [1]</button> + <button type="button" class="button pastesortunique" title="click: paste + sort + unique + copy to clipboard" onclick="paste()">Paste, Sort & Copy [1]</button> <span class="between_buttons">or</span> - <button class="button sortunique" title="click: sort + unique + copy to clipboard" onclick="sort_and_copy()">Sort & Copy [2]</button> + <button type="button" class="button sortunique" title="click: sort + unique + copy to clipboard" onclick="sort_and_copy()">Sort & Copy [2]</button> <div class="flexlabel"> <input id="unique" type="checkbox" name="unique" checked> <label for="unique">output unique lines only</label> -- GitLab