mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Restrict # of hits returned; clear results on empty search string.
This commit is contained in:
parent
c82f4481e4
commit
c2ace9a0a0
1 changed files with 4 additions and 4 deletions
|
@ -29,7 +29,7 @@ define [
|
|||
$scope.sending = false
|
||||
$scope.suggestions = [];
|
||||
|
||||
_handleSearchResults = (success, results) ->
|
||||
_handleSearchResults = (success, results) ->
|
||||
suggestions = for hit in results.hits
|
||||
page_underscored = hit.pageName.replace(/\s/g,'_')
|
||||
section_underscored = hit.sectionName.replace(/\s/g,'_')
|
||||
|
@ -64,9 +64,9 @@ define [
|
|||
|
||||
$scope.$watch "form.subject", (newVal, oldVal) ->
|
||||
if newVal and newVal != oldVal
|
||||
algoliaSearch.searchWiki newVal, _handleSearchResults
|
||||
|
||||
$scope.$watch "suggestions", (newVal) -> console.log newVal
|
||||
algoliaSearch.searchWiki newVal, _handleSearchResults, { hitsPerPage: 3 }
|
||||
else
|
||||
$scope.suggestions = [];
|
||||
|
||||
$scope.close = () ->
|
||||
$modalInstance.close()
|
||||
|
|
Loading…
Reference in a new issue