1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-04 02:20:13 +02:00

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

This commit is contained in:
Adam Tauber 2015-05-27 22:43:49 +02:00
parent 021c8b2544
commit f79f6713b0

View File

@ -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);