b
This commit is contained in:
parent
311d9cb57f
commit
9ad85e98a0
1 changed files with 4 additions and 1 deletions
|
@ -123,7 +123,10 @@ async function GetPost() {
|
|||
}
|
||||
}
|
||||
// Any replies? Give them the thing :3
|
||||
for (let i of document.getElementsByClassName("body").hasAttribute("id")) {
|
||||
for (let i of document.getElementsByTagName("body").children)) {
|
||||
if (i.hasAttribute("id")) {
|
||||
break;
|
||||
}
|
||||
let TempID = i.getAttribute("id");
|
||||
i.onclick = (event) => {
|
||||
SetThreadPost(ThreadedPost[TempID], i);
|
||||
|
|
Loading…
Add table
Reference in a new issue