Sha256: 9b34b4931e41bd5c3b676323c44c041f877343e673b857541881a3313aadc0cf
Contents?: true
Size: 414 Bytes
Versions: 18
Compression:
Stored size: 414 Bytes
Contents
/* typeahead */ (function($) { $.fn.hjq_typeahead = function(annotations) { var opts = this.hjq('getOptions', annotations); if(annotations.completer_path) { opts.source = function (query, process) { return $.get(annotations.completer_path, { term: query }, function (data) { return process(data); }); }; } this.typeahead(opts); }; })( jQuery );
Version data entries
18 entries across 18 versions & 1 rubygems