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

dependabot/pip/master/sphinx-6.1.3
Adam Tauber 9 years ago
parent 021c8b2544
commit f79f6713b0

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

Loading…
Cancel
Save