new: text toggle, 'now' threading, 'now' post
This commit is contained in:
parent
43676e78b9
commit
cec413de5e
8 changed files with 147 additions and 29 deletions
|
@ -17,3 +17,13 @@ function onlyPlayOneIn(container) {
|
|||
document.addEventListener("DOMContentLoaded", function () {
|
||||
onlyPlayOneIn(document.body);
|
||||
});
|
||||
|
||||
function blockToggle(id) {
|
||||
var blockID = document.getElementById(id);
|
||||
|
||||
if (blockID.style.display === "block") {
|
||||
blockID.style.display = "none";
|
||||
} else {
|
||||
blockID.style.display = "block";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue