[mod] gitignore xqdoc

This commit is contained in:
Andy Bunce 2025-01-26 16:36:02 +00:00
parent d9f80cc9c4
commit 52942a5ce1
30 changed files with 30 additions and 3557 deletions

View file

@ -1,12 +0,0 @@
// 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");
});
}