Skip to content

Commit

Permalink
Add CTRL+S save shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
luk1337 authored and matze committed Aug 28, 2024
1 parent 8171cee commit cbdc10a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@
ev.preventDefault();
}

function keyDownHandler(ev) {
if (ev.ctrlKey && ev.key == 's') {
ev.preventDefault();

let textarea = document.getElementById('text');
textarea.form.submit();
}
}

function openFile() {
let input = document.createElement("input");
input.type = "file";
Expand Down Expand Up @@ -61,7 +70,7 @@
<form action="{{ base_path.path() }}" method="post" style="height: 100%;">
<div class="container">
<div class="content">
<textarea id="text" name="text" autocorrect="off" autocomplete="off" spellcheck="false" placeholder="<paste text or drop file here>" ondrop="dropHandler(event);" ondragover="dragOverHandler(event);" autofocus></textarea>
<textarea id="text" name="text" autocorrect="off" autocomplete="off" spellcheck="false" placeholder="<paste text or drop file here>" ondrop="dropHandler(event);" ondragover="dragOverHandler(event);" onkeydown="keyDownHandler(event);" autofocus></textarea>
</div>
<div class="controls">
<div class="extensions-list">
Expand Down

0 comments on commit cbdc10a

Please sign in to comment.