Browse Source

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

Adam Tauber 10 years ago
parent
commit
f79f6713b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/static/js/search_on_category_select.js

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

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