mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-28 19:41:33 +02:00
don't search for instituion until we get a few chars. Saves some usless algolia http calls
This commit is contained in:
@@ -49,6 +49,10 @@ define [
|
||||
# listen for blur events on institution field to send the post
|
||||
if inputVal?.indexOf("(") != -1 and inputVal?.indexOf(")") != -1
|
||||
$scope.sendUpdate()
|
||||
|
||||
query = $scope.userInfoForm.institution
|
||||
if query?.length <= 3
|
||||
return #saves us algolia searches, need ~4 chars to get uni anyway
|
||||
|
||||
Institutions.search $scope.userInfoForm.institution, (err, response)->
|
||||
$scope.institutions = _.map response.hits, (institution)->
|
||||
|
||||
Reference in New Issue
Block a user