8 lines
315 B
JavaScript
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());
|
|
});
|