MIF_E31211891/public/assets/static/js/pages/component-toasts.js

10 lines
273 B
JavaScript

const toastTrigger = document.getElementById("liveToastBtn")
const toastLiveExample = document.getElementById("liveToast")
if (toastTrigger) {
toastTrigger.addEventListener("click", () => {
const toast = new bootstrap.Toast(toastLiveExample)
toast.show()
})
}