Skip to content
Snippets Groups Projects
Select Git revision
  • cba90e368a98389d5ad0f3ab2aae36adf18e0d0a
  • main default protected
  • release
  • 0.21.0
  • 0.20.0
  • 0.19.0
  • 0.18.0
  • 0.17.0
  • 0.16.0
  • 0.15.0
  • 0.14.0
  • 0.13.0
  • 0.11.0
  • 0.10.0
  • 0.9.0
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4.2
  • 0.4.1
  • 0.4.0
  • 0.3.0
23 results

README.md

Blame
  • autocomplete.js 507 B
    'use strict';
    
    $(function () {
    
      // Activate search suggestions for the search bar in the header and for the
      // search bar used in the body.
    
    
    })
      $('.site-search input, .search').autocomplete({
        delay: 500,
        html: true,
        minLength: 2,
        source: function (request, response) {
          var url = ckan.SITE_ROOT + '/api/3/action/autocomplete';
          $.getJSON(url, {q: request.term})
            .done(function (data) {
              console.log(data);
              response(data);
            });
          }
      });