need to debug d2s skills

This commit is contained in:
Hash Borgir
2023-08-06 10:18:00 -06:00
parent 2cfdca65b5
commit 9dc93cbcbd
12 changed files with 525 additions and 23 deletions

View File

@@ -155,19 +155,19 @@ foreach (glob($tbl . "*.tbl") as $filename) {
// Initialize DataTables on the table
$('.table').DataTable();
// Resize textareas on page load
$('textarea').each(resizeTextarea);
// Resize textareas on input
$('textarea').on('input', resizeTextarea);
// Resize textareas on custom select change
$('.custom-select').change(function () {
$('textarea').each(resizeTextarea);
});
$('.page-link').click(function () {
$('textarea').each(resizeTextarea);
});
// // Resize textareas on page load
// $('textarea').each(resizeTextarea);
//
// // Resize textareas on input
// $('textarea').on('input', resizeTextarea);
//
// // Resize textareas on custom select change
// $('.custom-select').change(function () {
// $('textarea').each(resizeTextarea);
// });
// $('.page-link').click(function () {
// $('textarea').each(resizeTextarea);
// });
});
});
}