From fe1683c9c6fae8ccd16049912a13d0bb527d0e62 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Mon, 13 Jun 2022 21:35:14 +0200 Subject: UX fix: when the user clicks on the search input, don't move the cursor at the end Related to https://github.com/searxng/searxng/pull/1153#issuecomment-1154247988 --- searx/static/themes/simple/src/js/main/search.js | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'searx/static/themes/simple/src/js/main/search.js') diff --git a/searx/static/themes/simple/src/js/main/search.js b/searx/static/themes/simple/src/js/main/search.js index b96cf499d..97c9ea541 100644 --- a/searx/static/themes/simple/src/js/main/search.js +++ b/searx/static/themes/simple/src/js/main/search.js @@ -3,17 +3,10 @@ (function (w, d, searxng) { 'use strict'; - var firstFocus = true, qinput_id = "q", qinput; + var qinput_id = "q", qinput; const isMobile = window.matchMedia("only screen and (max-width: 50em)").matches; - function placeCursorAtEnd (element) { - if (element.setSelectionRange) { - var len = element.value.length; - element.setSelectionRange(len, len); - } - } - function submitIfQuery () { if (qinput.value.length > 0) { var search = document.getElementById('search'); @@ -45,15 +38,6 @@ searxng.ready(function () { qinput = d.getElementById(qinput_id); - function placeCursorAtEndOnce () { - if (firstFocus) { - placeCursorAtEnd(qinput); - firstFocus = false; - } else { - // e.preventDefault(); - } - } - if (qinput !== null) { // clear button createClearButton(qinput); @@ -84,8 +68,6 @@ }, "#" + qinput_id); } - qinput.addEventListener('focus', placeCursorAtEndOnce, false); - if (!isMobile && document.querySelector('.index_endpoint')) { qinput.focus(); } -- cgit v1.2.3