Skip to content
Snippets Groups Projects
Commit 7d7c798d authored by Chris Hallberg's avatar Chris Hallberg
Browse files

autocomplete 0.3 - term highlighting working.

parent fbe75182
No related merge requests found
/**
* vufind.typeahead.js 0.2
* vufind.typeahead.js 0.3
* ~ @crhallberg
*/
(function ( $ ) {
......@@ -29,14 +29,18 @@
if (typeof data[i] === 'string') {
data[i] = {val: data[i]};
}
var content = data[i].val;
if (options.highlight) {
var regex = new RegExp('('+input.val()+')', 'ig');
content = content.replace(regex, '<b>$1</b>');
}
var item = typeof data[i].href === 'undefined'
? $('<div/>').attr('data-value', data[i].val)
.html(data[i].val)
.addClass('item')
? $('<div/>').addClass('item')
.attr('data-value', data[i].val)
.html(content)
: $('<a/>').attr('href', data[i].href)
.attr('data-value', data[i].val)
.html(data[i].val)
.addClass('item')
.attr('data-value', data[i].val)
.html(content)
if (typeof data[i].description !== 'undefined') {
item.append($('<small/>').text(data[i].description));
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment