github.com/munnerz/test-infra@v0.0.0-20190108210205-ce3d181dc989/prow/spyglass/lenses/junit/lens.ts (about) 1 function toggleExpansion(bodyId: string, expanderId: string): void { 2 const body = document.getElementById(bodyId)!; 3 body.classList.toggle('hidden-tests'); 4 if (body.classList.contains('hidden-tests')) { 5 document.getElementById(expanderId)!.innerHTML = 'expand_more'; 6 } else { 7 document.getElementById(expanderId)!.innerHTML = 'expand_less'; 8 } 9 spyglass.contentUpdated(); 10 } 11 12 (window as any).toggleExpansion = toggleExpansion;