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)) {
|
if ((ev.key === 'Enter') && (ev.ctrlKey || ev.metaKey)) {
|
||||||
textEl.value += '\n';
|
textEl.value += '\n';
|
||||||
}
|
}
|
||||||
else if (ev.key === 'Enter' && !ev.shiftKey && canSend) {
|
else if (ev.key === 'Enter' && !ev.shiftKey && !('ontouchstart' in document.documentElement) && canSend) {
|
||||||
send();
|
send();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue