Flatlogic Bot 3d63e8cf87 1.0
2025-10-26 16:30:00 +00:00

8 lines
315 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
const toastElList = [].slice.call(document.querySelectorAll('.toast'));
const toastList = toastElList.map(function (toastEl) {
return new bootstrap.Toast(toastEl, { delay: 3000 });
});
toastList.forEach(toast => toast.show());
});