Procházet zdrojové kódy

[fix] do not use category select js if there is no search query field on the page

Adam Tauber před 10 roky
rodič
revize
f79f6713b0
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      searx/static/js/search_on_category_select.js

+ 1
- 1
searx/static/js/search_on_category_select.js Zobrazit soubor

@@ -1,5 +1,5 @@
1 1
 $(document).ready(function() {
2
-    if($('#q')) {
2
+    if($('#q').length) {
3 3
         $('#categories label').click(function(e) {
4 4
             $('#categories input[type="checkbox"]').each(function(i, checkbox) {
5 5
                 $(checkbox).prop('checked', false);