techgarage-ir.MTWireGuard/wwwroot/js/toasts.js
2023-03-03 23:24:18 +03:30

18 lines
No EOL
605 B
JavaScript

/* global coreui */
/**
* --------------------------------------------------------------------------
* CoreUI Free Boostrap Admin Template (v4.2.2): popovers.js
* Licensed under MIT (https://coreui.io/license)
* --------------------------------------------------------------------------
*/
const toastTrigger = document.getElementById('liveToastBtn');
const toastLiveExample = document.getElementById('liveToast');
if (toastTrigger) {
toastTrigger.addEventListener('click', () => {
const toast = new coreui.Toast(toastLiveExample);
toast.show();
});
}
//# sourceMappingURL=toasts.js.map