Skip to content
Snippets Groups Projects
Commit 88ffdd26 authored by Chris Hallberg's avatar Chris Hallberg Committed by André Lahmann
Browse files

Implement search autocomplete update with type change.

parent c8d15abc
No related merge requests found
......@@ -332,6 +332,10 @@ $(document).ready(function() {
}
}
);
$('#searchForm_type').change(function() {
var query = $('#searchForm_lookfor').val();
$('#searchForm_lookfor').focus().typeahead('val', '').typeahead('val', query);
});
// Checkbox select all
$('.checkbox-select-all').change(function() {
......
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