Files
2025-09-29 00:52:08 +02:00

7 lines
219 B
JavaScript
Executable File

//Node toggle functionality for stats display
function toggleChildVisibility(node){
var x=document.getElementById(node); if(x.style.display!='none') x.style.display = 'none';else x.style.display = 'block';
}