mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Disable enter for touchscreens
This commit is contained in:
parent
bf1e0bb0c6
commit
50e7c828f3
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ function onKeydown(ev: KeyboardEvent) {
|
|||
if ((ev.key === 'Enter') && (ev.ctrlKey || ev.metaKey)) {
|
||||
textEl.value += '\n';
|
||||
}
|
||||
else if (ev.key === 'Enter' && !ev.shiftKey && canSend) {
|
||||
else if (ev.key === 'Enter' && !ev.shiftKey && !('ontouchstart' in document.documentElement) && canSend) {
|
||||
send();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue