7 lines
208 B
JavaScript
7 lines
208 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
document.querySelectorAll('.toast').forEach((toastEl) => {
|
|
const toast = new bootstrap.Toast(toastEl, { delay: 4000 });
|
|
toast.show();
|
|
});
|
|
});
|