17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
const Toast = Swal.mixin({
|
|
toast: true,
|
|
position: "top-end",
|
|
showConfirmButton: false,
|
|
timer: 3000,
|
|
timerProgressBar: true,
|
|
didOpen: (toast) => {
|
|
toast.addEventListener("mouseenter", Swal.stopTimer);
|
|
toast.addEventListener("mouseleave", Swal.resumeTimer);
|
|
},
|
|
});
|
|
|
|
Toast.fire({
|
|
icon: "success",
|
|
title: "Berhasil disimpan",
|
|
});
|