js.cerreal.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cerreal-maven-plugin Show documentation
Show all versions of cerreal-maven-plugin Show documentation
A plugin used to generate reports of test outcomes and code coverage by tests executed by the CCL Testing Framework and through the maven-ccl-plugin
cerreal_toggleDisplay = function(elementId) {
var el = document.getElementById(elementId);
if (el.style.display != 'none') {
el.style.display = 'none';
} else {
el.style.display = '';
}
}