Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CTRL+S save shortcut #66

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading