16 أسطر
399 B
JavaScript
16 أسطر
399 B
JavaScript
'use strict';
|
|
|
|
function popup(icon, text, position = 'top') {
|
|
Swal.fire({
|
|
background: '#1D2026',
|
|
position: position,
|
|
icon: icon,
|
|
text: text,
|
|
color: '#FFFFFF',
|
|
confirmButtonColor: '#1A84F5',
|
|
showClass: { popup: 'animate__animated animate__fadeInDown' },
|
|
hideClass: { popup: 'animate__animated animate__fadeOutUp' },
|
|
});
|
|
}
|
|
//...
|