prestation/Js/boutdecode.js
2025-12-05 10:42:46 +00:00

50 lines
668 B
JavaScript
Executable File

codeLangue = $("#codeLangue").val();
if(codeLangue=="en_US")
{
swal({
title: v_msgEng,
text: "",
icon: 'warning',
buttons: true,
dangerMode: true,
buttons: {
cancel: "No",
confirm: "Yes",
}
}).then(function(isConfirm) {
if (isConfirm)
{
}
else
{
return;
}
});
}
else
{
swal({
title: v_msg,
text: "",
icon: 'warning',
buttons: true,
dangerMode: true,
buttons: {
cancel: "Non",
confirm: "Oui",
}
}).then(function(isConfirm) {
if (isConfirm)
{
}
else
{
return;
}
});
}