Allow text selection, fixes #688

This commit is contained in:
Fabian 2022-07-21 21:46:11 +09:00
parent 04a0cf4b5f
commit 084575179b

View file

@ -1708,9 +1708,8 @@
phone_keyboard.setAttribute("spellcheck", "false");
phone_keyboard.tabIndex = 0;
$("screen_container").addEventListener("mousedown", (e) =>
$("screen_container").addEventListener("mousedown", e =>
{
e.preventDefault();
phone_keyboard.focus();
}, false);