50 lines
668 B
JavaScript
Executable File
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;
|
|
}
|
|
});
|
|
|
|
} |