Files
RPAClaroLogin/views/app-assets/js/components/notification.js
T
2025-04-03 08:51:40 -05:00

17 lines
385 B
JavaScript

// Notification
$(".toast-btn").click(function () {
let btnItem = $(this),
btnId = btnItem.data("id");
$(".toast").each(function () {
let eachItem = $(this),
eachItemId = eachItem.data("id");
if (eachItemId) {
if (btnId === eachItemId) {
new bootstrap.Toast($(this)).show();
}
}
});
});