From f63bb79c0e799bf352f8b62bb6f61e091655f8a4 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Fri, 11 Jan 2019 16:50:34 -0500 Subject: [PATCH] eslint/jshint fixes. --- themes/bootstrap3/js/common.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js index 3635da1d85f..24cb458c175 100644 --- a/themes/bootstrap3/js/common.js +++ b/themes/bootstrap3/js/common.js @@ -252,8 +252,7 @@ function setupAutocomplete() { maxResults: 10, loadingString: VuFind.translate('loading') + '...', // Auto-submit selected item - callback: function autoSubmitAC(item, input, et) { - console.log("ac callback", item.value); + callback: function autoSubmitAC(item, input) { input.val(item.value); $("#searchForm").submit(); return false; -- GitLab