Skip to content
Snippets Groups Projects
Commit f63bb79c authored by Chris Hallberg's avatar Chris Hallberg
Browse files

eslint/jshint fixes.

parent 225dfc58
Branches
Tags
No related merge requests found
...@@ -252,8 +252,7 @@ function setupAutocomplete() { ...@@ -252,8 +252,7 @@ function setupAutocomplete() {
maxResults: 10, maxResults: 10,
loadingString: VuFind.translate('loading') + '...', loadingString: VuFind.translate('loading') + '...',
// Auto-submit selected item // Auto-submit selected item
callback: function autoSubmitAC(item, input, et) { callback: function autoSubmitAC(item, input) {
console.log("ac callback", item.value);
input.val(item.value); input.val(item.value);
$("#searchForm").submit(); $("#searchForm").submit();
return false; return false;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment