7 lines
219 B
JavaScript
Executable File
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';
|
|
}
|
|
|