From 5e298383a3ce74fc5f5d5bfad33d4de3df371061 Mon Sep 17 00:00:00 2001 From: Kibi Kelburton Date: Fri, 29 May 2026 08:59:01 +0200 Subject: [PATCH] f --- public/s/js/tag_autocomplete.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/s/js/tag_autocomplete.js b/public/s/js/tag_autocomplete.js index a6c7cf8..174bcd1 100644 --- a/public/s/js/tag_autocomplete.js +++ b/public/s/js/tag_autocomplete.js @@ -76,8 +76,8 @@ window.TagAutocomplete = (() => { dropdown.addEventListener('touchstart', () => { dropdownTouching = true; }, { passive: true }); dropdown.addEventListener('touchend', () => { dropdownTouching = false; - // Re-focus input so user can keep typing after scrolling - input.focus(); + // Note: do NOT re-focus input here — that would reopen the mobile keyboard. + // The keyboard only comes back when the user explicitly taps the input. }, { passive: true }); dropdown.addEventListener('touchcancel', () => { dropdownTouching = false; }, { passive: true });