mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Enter sends message, ctrl/meta/shift + enter makes newline
This commit is contained in:
parent
3b047f1482
commit
7b6665653e
1 changed files with 4 additions and 1 deletions
|
@ -125,7 +125,10 @@ function onDrop(ev: DragEvent): void {
|
|||
|
||||
function onKeydown(ev: KeyboardEvent) {
|
||||
typing();
|
||||
if ((ev.key === 'Enter') && (ev.ctrlKey || ev.metaKey) && canSend) {
|
||||
if ((ev.key === 'Enter') && (ev.ctrlKey || ev.metaKey || ev.shiftKey) && canSend) {
|
||||
textEl.value += '\n'
|
||||
}
|
||||
else if (ev.key === 'Enter' && canSend) {
|
||||
send();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue