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

26 lines
610 B
JavaScript

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