Disable enter for touchscreens
This commit is contained in:
parent
033462653c
commit
e37dd8b93e
|
@ -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 New Issue