mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 06:09:02 +02:00
Extra search options; only search after three chars have been entered.
This commit is contained in:
@@ -63,8 +63,12 @@ define [
|
||||
$scope.$apply()
|
||||
|
||||
$scope.$watch "form.subject", (newVal, oldVal) ->
|
||||
if newVal and newVal != oldVal
|
||||
algoliaSearch.searchWiki newVal, _handleSearchResults, { hitsPerPage: 3 }
|
||||
if newVal and newVal != oldVal and newVal.length > 3
|
||||
# TODO Search the KB index instead; Wiki is used for testing purposes.
|
||||
algoliaSearch.searchWiki newVal, _handleSearchResults, {
|
||||
hitsPerPage: 3
|
||||
typoTolerance: 'strict'
|
||||
}
|
||||
else
|
||||
$scope.suggestions = [];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user