34008-vm/assets/js/main.js
Flatlogic Bot 7be5d661b2 www
2025-09-19 07:29:32 +00:00

10 lines
383 B
JavaScript

// assets/js/main.js
document.addEventListener('DOMContentLoaded', function () {
// Initialize Bootstrap toasts if they exist
var toastElList = [].slice.call(document.querySelectorAll('.toast'));
var toastList = toastElList.map(function (toastEl) {
var toast = new bootstrap.Toast(toastEl, { delay: 5000 });
toast.show();
return toast;
});
});