Files
2025-08-18 01:01:14 +02:00

16 lines
410 B
JavaScript

'use strict';
function popup(icon, text, position = 'top') {
Swal.fire({
background: 'rgba(0, 0, 0, 0.7)',
position: position,
icon: icon,
text: text,
color: '#FFFFFF',
confirmButtonColor: '#1A84F5',
showClass: { popup: 'animate__animated animate__fadeInDown' },
hideClass: { popup: 'animate__animated animate__fadeOutUp' },
});
}
//...