Sha256: f2ea7ebb417f7d5465b80f7d8c0861f7e5711090e24d63dc02a44714a69fc3ff

Contents?: true

Size: 795 Bytes

Versions: 64

Compression:

Stored size: 795 Bytes

Contents

// This script initializes a jquery-ui autocomplete widget
export default class Default {
  constructor(element, url) {
    this.url = url;
    if (this.url !== undefined)
      element.autocomplete(this.options(element))
  }

  options(element) {
    return {
      minLength: 2,

      source: (request, response) => {
        $.getJSON(this.url, {
          q: request.term
        }, response );
      },

      focus: function() {
        // prevent value inserted on focus
        return false;
      },

      complete: function(event) {
        $('.ui-autocomplete-loading').removeClass("ui-autocomplete-loading");
      },

      select: function() {
        if (element.data('autocomplete-read-only') === true) {
          element.attr('readonly', true);
        }
      }
    }
  }
}

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
hyrax-5.0.4 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-5.0.3 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-5.0.2 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-5.0.1 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-5.0.0 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-5.0.0.rc3 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-5.0.0.rc2 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-5.0.0.rc1 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-3.6.0 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-4.0.0 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-4.0.0.rc3 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-4.0.0.rc2 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-4.0.0.rc1 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-3.5.0 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-4.0.0.beta2 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-3.4.2 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-4.0.0.beta1 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-3.4.1 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-3.4.0 app/assets/javascripts/hyrax/autocomplete/default.es6
hyrax-3.3.0 app/assets/javascripts/hyrax/autocomplete/default.es6