2025-03-24 22:58:00 +03:00

31 lines
747 B
JavaScript

<script>
//"warning" "error" "success" "info"
function swalfun(title, text, type, confirmButtonText='حسنا') {
Swal.fire({
title,
text,
type,
confirmButtonText
})
}
function swalthen(title, text, type, href) {
swal.fire({
title,
text,
type,
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'نعم',
cancelButtonText: 'لا'
}).then((result) => {
if (result.value) {
document.location.href = href;
}
})
}
</script>