Guest User

Untitled

a guest
Jul 19th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. $('#searchIconInput').typeahead({
  2. hint: true,
  3. highlight: true,
  4. minLength: 3
  5. },
  6. {
  7. name: 'searchSuggestionsShown',
  8. source: searchSuggestionEngine
  9. });
  10. });
  11.  
  12. var searchSuggestionEngine = new Bloodhound({
  13. datumTokenizer: Bloodhound.tokenizers.whitespace,
  14. queryTokenizer: Bloodhound.tokenizers.whitespace,
  15. prefetch: {
  16. url: '@Url.Action("RetrieveSuggestedSearchItems", "Search")',
  17. ttl: getNumberOfMillisecondsToCachePrefetchedData(),
  18. },
  19. remote: {
  20. url: '@Url.Action("RetrieveAdditionalSuggestedSearchItems", "Search")/?query=',
  21. replace: function (url, uriEncodedQuery) {
  22. return url + uriEncodedQuery;
  23. },
  24. cache: false
  25. }
  26. });
Add Comment
Please, Sign In to add comment