[mod] update to pdfbox 3.0.3

This commit is contained in:
Andy Bunce 2025-01-25 22:19:46 +00:00
parent 057d29dad7
commit d9f80cc9c4
35 changed files with 3543 additions and 279 deletions

View file

@ -0,0 +1,12 @@
// simple javascript support
//https://www.w3schools.com/howto/howto_js_treeview.asp
var toggler = document.getElementsByClassName("caret");
var i;
for (i = 0; i < toggler.length; i++) {
toggler[i].addEventListener("click", function() {
this.parentElement.querySelector(".nested").classList.toggle("active");
this.classList.toggle("caret-down");
});
}