15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
$(document).ready(function() {
|
|
$("input[name=search-query]").typeahead({
|
|
minLength: 2,
|
|
source: function (query,process) {
|
|
search('u/search/ajaxlist',query,process);
|
|
},
|
|
|
|
matcher: function () { return true; },
|
|
|
|
updater: function (item) {
|
|
window.parent.location.href = site_url+users[item];
|
|
},
|
|
});
|
|
});
|