8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
(() => {
|
|
const toastEl = document.getElementById('statusToast');
|
|
if (toastEl && toastEl.dataset.show === 'true') {
|
|
const toast = new bootstrap.Toast(toastEl, { delay: 4000 });
|
|
toast.show();
|
|
}
|
|
})();
|