10 lines
338 B
JavaScript
10 lines
338 B
JavaScript
// assets/js/main.js
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
// Activate toasts
|
|
var toastElList = [].slice.call(document.querySelectorAll('.toast'));
|
|
var toastList = toastElList.map(function (toastEl) {
|
|
return new bootstrap.Toast(toastEl);
|
|
});
|
|
toastList.forEach(toast => toast.show());
|
|
});
|