firstcommit

This commit is contained in:
2025-08-17 16:23:14 +05:45
commit 76bf4c0a18
2648 changed files with 362795 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
$(document).ready(function() {
if ($('.repeater').length > 0) {
$('.repeater').repeater({
show: function () {
// This function is called when the "Add" button is clicked
// You can add any additional logic here
return $(this).slideDown();
},
});
// Disable form submission when clicking the "Add" button
$('.repeater').on('click', '[data-repeater-create]', function () {
return false;
});
}
});