AAAAcomponents/com_chronoforms/form_actions/autocomplete_loader/assets/Autocompleter.Local.js000060400000001011151374321460034613 0ustar00home/academiac/www/administrator/** * Autocompleter.Local * * http://digitarald.de/project/autocompleter/ * * @version 1.1.2 * * @license MIT-style license * @author Harald Kirschner * @copyright Author */ Autocompleter.Local = new Class({ Extends: Autocompleter, options: { minLength: 0, delay: 200 }, initialize: function(element, tokens, options) { this.parent(element, options); this.tokens = tokens; }, query: function() { this.update(this.filter()); } });