瀏覽代碼

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

Adam Tauber 10 年之前
父節點
當前提交
f79f6713b0
共有 1 個文件被更改,包括 1 次插入1 次删除
  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 @@
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);