Improve readability.

This commit is contained in:
giomba 2022-12-19 18:35:46 +01:00
parent 0f2be6e7c7
commit ede8e05699
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ function counters() {
let datespan = document.createElement("span");
datespan.style.fontSize = "smaller";
let dateobj = new Date(post.date);
datespan.appendChild(document.createTextNode(dateobj.getDate() + " " + MONTHNAME[dateobj.getMonth()] + " " + dateobj.getFullYear()));
datespan.appendChild(document.createTextNode("del " + dateobj.getDate() + " " + MONTHNAME[dateobj.getMonth()] + " " + dateobj.getFullYear()));
li.appendChild(datespan);
ul.appendChild(li);
}