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

xslt.base.html.annotation.js Maven / Gradle / Ivy

/* -*- JavaScript -*-
*/

function show_annotation(id) {
    var annot = document.getElementById('annot-'+id);
    annot.style.display = "block";
    annot = document.getElementById('annot-'+id+'-on');
    annot.style.display = "none";
    annot = document.getElementById('annot-'+id+'-off');
    annot.style.display = "inline";
    return false;
}

function hide_annotation(id) {
    var annot = document.getElementById('annot-'+id);
    annot.style.display = "none";
    annot = document.getElementById('annot-'+id+'-on');
    annot.style.display = "inline";
    annot = document.getElementById('annot-'+id+'-off');
    annot.style.display = "none";
    return false;
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy