Sha256: 23d7dbb0393ef14bb7db27e6f66e1a14b7e09cc4524f4de5a0bb471689e5ca40
Contents?: true
Size: 521 Bytes
Versions: 47
Compression:
Stored size: 521 Bytes
Contents
/** * Autocompleter.Local * * http://digitarald.de/project/autocompleter/ * * @version 1.1.2 * * @license MIT-style license * @author Harald Kirschner <mail [at] digitarald.de> * @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()); } });
Version data entries
47 entries across 16 versions & 1 rubygems