diff options
author | dalf <alex@al-f.net> | 2014-01-02 22:57:28 +0100 |
---|---|---|
committer | dalf <alex@al-f.net> | 2014-01-02 22:57:28 +0100 |
commit | 43a6ffcd4644fb831bd4a7bb47c856e21d3ab5e6 (patch) | |
tree | 52a6453e441e9ac8aeff26321ab0d07777dbb514 /searx/templates | |
parent | 2006a1df1c271349462d3ed7be40d3e59340dae5 (diff) | |
download | searxng-43a6ffcd4644fb831bd4a7bb47c856e21d3ab5e6.tar.gz searxng-43a6ffcd4644fb831bd4a7bb47c856e21d3ab5e6.zip |
[fix] the search text input gets the focus automatically
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/search.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/search.html b/searx/templates/search.html index 64f0d8f73..07df31ef5 100644 --- a/searx/templates/search.html +++ b/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> |