1
0

Search optimisation

This commit is contained in:
2022-09-30 19:19:59 +02:00
parent ec9ffa07f9
commit 9d2305bd68
2 changed files with 3 additions and 8 deletions

View File

@ -1,18 +1,13 @@
function filter_name(str)
{
str = str.toLowerCase();
if (str.length == 0) {
for (let i = 0; i < articles.length; i++) {
articles[i].style.display = "block";
}
} else {
str = str.toLowerCase();
for (let i = 0; i < articles.length; i++) {
let name = articles[i].getElementsByTagName("h2")[0].innerHTML.toLowerCase();
if (!name.includes(str)) {
articles[i].style.display = "none";
} else {
articles[i].style.display = "block";
}
articles[i].style.display = !articles[i].dataset.title.includes(str) ? "none" : "block";
}
}
}