From 29796e62fe386b8dbdac605817b379d1662bdd91 Mon Sep 17 00:00:00 2001 From: Conrad Zelck <git@simpel.cc> Date: Tue, 7 Dec 2021 16:23:26 +0000 Subject: [PATCH] style index: remove 'unique' in button labels Buttons said 'unique' too. But after making the lines unique as an option to check it had to be removed from the button labels. Had to be removed from the details 'How to sort' too. Signed-off-by: Conrad Zelck <git@simpel.cc> --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 9311629..cb9b6b0 100644 --- a/index.html +++ b/index.html @@ -29,12 +29,12 @@ <details> <summary>How to sort</summary> <p>With this tool you can sort newline separated lines alphabetically.</p> - <p>You can either push the button "Paste, Sort, Unique & Copy" where the clipboard content is used as content or fill in your lines into textarea and push the button "Sort, Unique & Copy". In both cases the sorted result will be put back to clipboard.</p> + <p>You can either push the button "Paste, Sort & Copy" where the clipboard content is used as content or fill in your lines into textarea and push the button "Sort & Copy". In both cases the sorted result will be put back to clipboard.</p> </details> <div class="flex"> - <button class="button pastesortunique" title="click: paste + sort + unique + copy to clipboard" onclick="paste()">Paste, Sort, Unique & Copy [1]</button> + <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, Unique & Copy [2]</button> + <button class="button sortunique" title="click: sort + unique + copy to clipboard" onclick="sort_and_copy()">Sort & Copy [2]</button> <input id="unique" type="checkbox" name="unique" checked> <label for="unique">output unique lines only</label> </div> -- GitLab