1
0
Fork 0

fix(autocomplete): auto select top result

Use autocomplete.js's autoselect=true option to select the top
suggestion on <ENTER> even if you don't move the cursor.

Fix #81
This commit is contained in:
Sylvain UTARD 2016-03-15 11:37:53 +01:00
parent 187db27ce7
commit 473824a574

View file

@ -39,7 +39,8 @@ class DocSearch {
},
autocompleteOptions = {
debug: false,
hint: false
hint: false,
autoselect: true
}
}) {
DocSearch.checkArguments({apiKey, indexName, inputSelector, algoliaOptions, autocompleteOptions});