re-initialize and make some changes. repository got to around 2 gigabytes and needed to be more efficient

This commit is contained in:
soap
2023-09-29 12:56:26 -05:00
commit 234e4592fa
1441 changed files with 476627 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
$(document).ready( function () {
spawn_tooltips();
$('#generate_spreadsheet').dataTable( {
"drawCallback": function( settings ) {
spawn_tooltips();
},
columnDefs: [
{ type: 'any-number', targets : [1,2,3,4] }
]
} );
$('#generate_other').dataTable( {
"drawCallback": function( settings ) {
spawn_tooltips();
}
} );
$('.copy-text').each(function(index) {
$(this).on("click", function(){
$(this).select();
document.execCommand("copy");
$('.tipsy').html('Copied!');
});
});
});