fix(dgsi): Switch to focus event for selecting

This should fix the issue where iOS devices cannot select the text.

Fixes #11
This commit is contained in:
Tom Hubrecht 2025-02-08 14:29:39 +01:00
parent cf1e8abf6d
commit 522e2eb7c7
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -26,7 +26,7 @@ const init = ($node) => {
});
q("[data-select]", ($input) => {
$input.addEventListener("click", () => {
$input.addEventListener("focus", () => {
$input.select();
});
});