primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View File

@ -0,0 +1,24 @@
/* Generate print preview for table/graph contents generated by Tabulizer
http://www.tabulizer.com */
function printTabulizerArea(area_id) {
var open_in_new_window = false;
if (open_in_new_window) {
var areaElements = document.getElementById(area_id);
var printing = window.open('','','left=0,top=0,width=550,height=400,toolbar=0,scrollbars=0,status=0');
printing.document.write(areaElements.outerHTML);
printing.document.close();
printing.focus();
printing.print();
printing.close();
} else {
var areaElements = document.getElementById(area_id).outerHTML;
var oldHTML = document.body.innerHTML;
document.body.innerHTML = areaElements;
// Print Page
window.print();
// Restore original HTML
document.body.innerHTML = oldHTML;
return;
}
}