소스 검색

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

Fix time range selection during search
Adam Tauber 7 년 전
부모
커밋
43855a0897
No account linked to committer's email
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      searx/static/plugins/js/search_on_category_select.js

+ 1
- 1
searx/static/plugins/js/search_on_category_select.js 파일 보기

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