Explorar el Código

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

Fix time range selection during search
Adam Tauber hace 7 años
padre
commit
43855a0897
Ninguna cuenta está vinculada al correo electrónico del colaborador
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      searx/static/plugins/js/search_on_category_select.js

+ 1
- 1
searx/static/plugins/js/search_on_category_select.js Ver fichero

@@ -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
             }