Daniel, I really like your module! :)
So, maybe you noticed that I assail you with requests and reports to make this module a bit more generic. :)

Is it possible to make the reaction time in finder_autocomplete.js (line 257 - this.delay) accessible through the UI - so we won't have to access the .js file after every module update again and again?

/**
 * An AutoComplete DataBase object
 */
Drupal.ACDB = function (uri) {
  this.uri = uri;
  this.delay = 300;
  this.cache = {};
};

Regards,
Stefan

Comments

danielb’s picture

Status: Active » Closed (won't fix)

This would only affect autocompletes that use the autosubmit feature, as the regular autocomplete uses the core js. I don't imagine many people would make use of such a feature. This is really out of scope, and a fairly advanced change that will add more coding/maintenance/burden into finder that really should be in the drupal core - I think you might be stuck editing it manually.

design.er’s picture

Ok, thank you for your time.

danielb’s picture

My advice is to get it working and not bother updating it very often unless there is some kind of security hole (which I doubt). At the moment there are a lot of releases but I expect that to slow down.

design.er’s picture

Status: Closed (won't fix) » Closed (fixed)

Ok, thank you. :)