All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.cerreal.js Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.3
Show newest version
cerreal_toggleDisplay = function(elementId) {
    var el = document.getElementById(elementId);
    if (el.style.display != 'none') {
        el.style.display = 'none';
    } else {
        el.style.display = '';        
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy