Skip to content
Snippets Groups Projects
Commit 86ff2335 authored by ynerant's avatar ynerant
Browse files

Display what is matched in user table (experimental, normalizing is not working)

parent fd2f426f
No related branches found
No related tags found
3 merge requests!104Beta,!98Morefront,!91Documents
Pipeline #8380 passed with warnings with stages
in 5 minutes and 8 seconds
......@@ -57,6 +57,10 @@
window.document.location = $(this).data("href");
timer_on = false;
});
$("tr > td:eq(0), tr > td:eq(1), tr > td:eq(2), tr > td:eq(3), tr > td:eq(5)").each(function() {
$(this).html($(this).text().replace(new RegExp(searchbar_obj.val(), 'i'), "<mark>$&</mark>"));
});
}
init();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment