i
This commit is contained in:
parent
602a1a551b
commit
755e4f8d9f
1 changed files with 7 additions and 7 deletions
|
@ -123,14 +123,14 @@ async function GetPost() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Any replies? Give them the thing :3
|
// Any replies? Give them the thing :3
|
||||||
for (let i of document.getElementsByTagName("body")[0].children) {
|
let TempID = 0;
|
||||||
if (i.hasAttribute("id")) {
|
while (TempID != (NumberOfThreads - 1)) {
|
||||||
break;
|
for (let i of document.getElementsByClassName(NumberOfThreads.toString())) {
|
||||||
}
|
i.onclick = (event) => {
|
||||||
let TempID = i.getAttribute("id");
|
SetThreadPost(ThreadedPost[TempID], i);
|
||||||
i.onclick = (event) => {
|
}
|
||||||
SetThreadPost(ThreadedPost[TempID], i);
|
|
||||||
}
|
}
|
||||||
|
TempID += 1;
|
||||||
}
|
}
|
||||||
} else if (website == "Bluesky") {
|
} else if (website == "Bluesky") {
|
||||||
// Check for a reblog.
|
// Check for a reblog.
|
||||||
|
|
Loading…
Add table
Reference in a new issue