Browse Source

Merge pull request #1105 from kvch/fix-time-range-selection-in-chrome

Fix time range selection during search
Adam Tauber 7 years ago
parent
commit
43855a0897
No account linked to committer's email
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searx/static/plugins/js/search_on_category_select.js

+ 1
- 1
searx/static/plugins/js/search_on_category_select.js View File

10
             }
10
             }
11
             return false;
11
             return false;
12
         });
12
         });
13
-        $('#time-range > option').click(function(e) {
13
+        $('#time-range').change(function(e) {
14
             if($('#q').val()) {
14
             if($('#q').val()) {
15
                 $('#search_form').submit();
15
                 $('#search_form').submit();
16
             }
16
             }