MediaWiki
Common.js: Difference between revisions
From Grouse House Wiki
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
} | } | ||
}); | }); | ||
} | |||
/* Dropdown menus */ | |||
function dropdown() { | |||
document.getElementById("variantDropdown").classList.toggle("show"); | |||
} | |||
window.onclick = function(event) { | |||
if (!event.target.matches('.dropbtn')) { | |||
var dropdowns = document.getElementsByClassName("dropdown-content"); | |||
var i; | |||
for (i = 0; i < dropdowns.length; i++) { | |||
var openDropdown = dropdowns[i]; | |||
if (openDropdown.classList.contains('show')) { | |||
openDropdown.classList.remove('show'); | |||
} | |||
} | |||
} | |||
} | } |
Revision as of 03:41, 16 February 2024
/* Any JavaScript here will be loaded for all users on every page load. */ /* Collapsible headers */ var spoilersc = document.getElementsByClassName('spoilerButton'); var j; for (j = 0; j < spoilersc.length; j++) { spoilersc[j].addEventListener("click", function() { this.classList.toggle("active"); var spoilercontent = this.nextElementSibling; if (spoilercontent.style.display === "block") { spoilercontent.style.display = "none"; } else { spoilercontent.style.display = "block"; } }); } /* Dropdown menus */ function dropdown() { document.getElementById("variantDropdown").classList.toggle("show"); } window.onclick = function(event) { if (!event.target.matches('.dropbtn')) { var dropdowns = document.getElementsByClassName("dropdown-content"); var i; for (i = 0; i < dropdowns.length; i++) { var openDropdown = dropdowns[i]; if (openDropdown.classList.contains('show')) { openDropdown.classList.remove('show'); } } } }