Removed unnecessary const categories array and a local const category.

This commit is contained in:
Alexander Andreev 2022-09-19 22:01:40 +04:00
parent 6f45549b73
commit f56ad5963a
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 1 additions and 4 deletions

View File

@ -1,5 +1,3 @@
const categories = ["update", "diary"];
const buttons = document.getElementsByTagName("button");
const articles = document.getElementsByTagName("article");
@ -8,9 +6,8 @@ document.getElementById("filter").classList.remove("hidden");
for (let i = 0; i < buttons.length; ++i)
if (buttons[i].name !== "")
buttons[i].addEventListener("click", e => {
const category = e.target.name;
for (let j = 0; j < articles.length; ++j)
if (articles[j].id.startsWith(category) || category === "all")
if (articles[j].id.startsWith(e.target.name) || e.target.name === "all")
articles[j].classList.remove("hidden");
else
articles[j].classList.add("hidden"); });