39024-vm/assets/js/main.js
Flatlogic Bot b6a9bec423 001
2026-03-06 13:34:25 +00:00

10 lines
306 B
JavaScript

document.addEventListener('DOMContentLoaded', () => {
const toastElList = document.querySelectorAll('.toast');
if (toastElList.length > 0 && typeof bootstrap !== 'undefined') {
toastElList.forEach((toastEl) => {
const toast = new bootstrap.Toast(toastEl);
toast.show();
});
}
});