mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-10-13 16:34:23 -05:00
need to debug d2s skills
This commit is contained in:
@@ -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);
|
||||
// });
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user