diff options
Diffstat (limited to 'app/utils/static/autocomplete.js')
-rw-r--r-- | app/utils/static/autocomplete.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/utils/static/autocomplete.js b/app/utils/static/autocomplete.js index ad0c70d..514a064 100644 --- a/app/utils/static/autocomplete.js +++ b/app/utils/static/autocomplete.js @@ -1,9 +1,9 @@ function autoCompleteItems() { -var item = document.getElementById('id_ap'); -var singlePresetOpts = new Choices(item, { - searchPlaceholderValue: 'Search for Animal', - placeholder: true, -}); + var item = document.getElementById('id_ap'); + var singlePresetOpts = new Choices(item, { + searchPlaceholderValue: 'Search for Animal', + placeholder: true, + }); } document.addEventListener("DOMContentLoaded", function(event) { autoCompleteItems(); |