mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
* add models tests (#1) also replace single quote to double one to confort PEP docstring + move _check_output to class properties to make it available for mocking * alpm tests implementation * try to replace os with pathlib * update tests for pathlib * fix includes glob and trim version from dependencies * build_tools package tests * repository component tests * add sign tests * complete status tests * handle exceptions in actual_version calls * complete core tests * move configuration to root conftest * application tests * complete application tests * change copyright to more generic one * base web tests * complete web tests * complete testkit also add argument parsers test
25 lines
980 B
Django/Jinja
25 lines
980 B
Django/Jinja
<script type="text/javascript">
|
|
function searchInTable() {
|
|
const input = document.getElementById("search");
|
|
const filter = input.value.toLowerCase();
|
|
const tables = document.getElementsByClassName("search-table");
|
|
|
|
for (let i = 0; i < tables.length; i++) {
|
|
const tr = tables[i].getElementsByTagName("tr");
|
|
// from 1 coz of header
|
|
for (let i = 1; i < tr.length; i++) {
|
|
let td = tr[i].getElementsByClassName("include-search");
|
|
let display = "none";
|
|
for (let j = 0; j < td.length; j++) {
|
|
if (td[j].tagName.toLowerCase() === "td") {
|
|
if (td[j].innerHTML.toLowerCase().indexOf(filter) > -1) {
|
|
display = "";
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
tr[i].style.display = display;
|
|
}
|
|
}
|
|
}
|
|
</script> |