Browse Source

Merge pull request #14 from dalf/master

focus on search input
Adam Tauber 11 years ago
parent
commit
b1c6b0a3f1
2 changed files with 2 additions and 2 deletions
  1. 1 1
      searx/static/js/searx.js
  2. 1 1
      searx/templates/search.html

+ 1 - 1
searx/static/js/searx.js

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

+ 1 - 1
searx/templates/search.html

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