techgarage-ir.MTWireGuard/UI/wwwroot/js/toasts.js
2023-06-28 18:01:39 +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