1
0
This commit is contained in:
2024-04-05 23:23:23 +09:00
parent 427b643a47
commit 4c5be2105c
8 changed files with 61 additions and 16 deletions

11
static/js/index.js Normal file
View File

@ -0,0 +1,11 @@
function blog_list_open() {
var b = document.querySelectorAll("li.blog-list-all");
var index = 0, length = b.length;
for ( ; index < length; index++) {
if (b[index].style.display == 'none') {
b[index].style.display = 'block';
} else {
b[index].style.display = 'none';
}
}
}