mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-07 18:14:28 +00:00
11 lines
396 B
JavaScript
11 lines
396 B
JavaScript
// Bootstrap toast example: https://getbootstrap.com/docs/5.2/components/toasts/
|
|
const toastTrigger = document.getElementById('toastButton')
|
|
const toastLiveExample = document.getElementById('toastMessage')
|
|
if (toastTrigger) {
|
|
toastTrigger.addEventListener('click', () => {
|
|
// eslint-disable-next-line no-undef
|
|
const toast = new bootstrap.Toast(toastLiveExample)
|
|
toast.show()
|
|
})
|
|
}
|