diff --git a/marlo-web/src/main/webapp/global/js/global.js b/marlo-web/src/main/webapp/global/js/global.js index 0e67ad8cb0..0d09e58e59 100644 --- a/marlo-web/src/main/webapp/global/js/global.js +++ b/marlo-web/src/main/webapp/global/js/global.js @@ -248,15 +248,9 @@ $(document).ready(function () { // WARNING MESSAGE var message = "" var messageType = "warning"; - if(isProgress == 'true'){ - message += "The Information was correctly saved.
"; - message += "Some of the fields could be missing or incorrect.
"; - message += "Don't worry! Some information is not necessary at this phase, but it will be required in the next phase."; - messageType = "info"; - }else{ - message += "The Information was correctly saved.
"; - message += "Please keep in mind that the fields highlighted below are missing or incorrect."; - } + + message += "The Information was correctly saved.
"; + message += "Please keep in mind that the fields highlighted below are missing or incorrect."; notifyErrorMessage(messageType, message); } @@ -294,14 +288,6 @@ $(document).ready(function () { $(containerIcon).addClass("alertColorWarning"); $(messages).removeClass("displayNone"); break; - case "info": - $(element).find('.alertText').html(message); - $(iconAlert).attr("src", baseURL + '/global/images/icon-info.png'); - $(containerAlert).addClass("alertColorBackgroundInfo"); - $(containerLine).addClass("alertColorInfo"); - $(containerIcon).addClass("alertColorInfo"); - $(messages).removeClass("displayNone"); - break; case "error": //Declaraciones ejecutadas cuando el resultado de expresión coincide con valorN break;