Selaa lähdekoodia

Merge branch 'master' of https://github.com/asciimoo/searx

pw3t 11 vuotta sitten
vanhempi
commit
04e7075c88
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1
    1
      searx/static/js/searx.js
  2. 1
    1
      searx/templates/search.html

+ 1
- 1
searx/static/js/searx.js Näytä tiedosto

@@ -17,7 +17,7 @@
17 17
 
18 18
     addListener(w, 'load', function () {
19 19
         var qinput = d.getElementById('q');
20
-        if (qinput !== null) {
20
+        if (qinput !== null && qinput.value === "") {
21 21
             addListener(qinput, 'focus', placeCursorAtEnd);
22 22
             qinput.focus();
23 23
         }

+ 1
- 1
searx/templates/search.html Näytä tiedosto

@@ -1,6 +1,6 @@
1 1
 <form method="post" action="/" id="search_form">
2 2
 <div id="search_wrapper">
3
-    <input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
3
+    <input type="text" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
4 4
     <input type="submit" value="" id="search_submit" />
5 5
 </div>
6 6
     <div>