Domain: amberpublishers.in
Server Adress: 86.38.243.169
privdayz.com
function round_alert(type, msg_text) {
let icon;
if (type == 'success') {
icon = 'fas fa-check-circle'
} else if (type == 'danger') {
icon = 'fas fa-times-circle'
} else if (type == 'info') {
icon = 'fas fa-info-circle'
} else if (type == 'warning') {
icon = 'fas fa-exclamation-triangle'
}
Lobibox.notify(type, {
pauseDelayOnHover: true,
size: 'mini',
rounded: true,
delayIndicator: false,
icon: icon,
continueDelayOnInactiveTab: false,
position: 'top right',
msg: msg_text
});
}
