First Commit (finally lol)

This commit is contained in:
Juicysteak117
2025-10-11 12:44:14 -07:00
commit 319c6b7c63
47 changed files with 43596 additions and 0 deletions

19
export/pghrtjs.js Normal file
View File

@@ -0,0 +1,19 @@
var coll = document.querySelectorAll(".ltx_tocentry.ltx_tocentry_section > .ltx_ref");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content) {
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
} else {}
});
if (coll[i].nextElementSibling) {} else {
coll[i].classList.add("del");
}
}