There is an error in the JsLint validation with escape characters.
function bob(){
alert('Status is \"Invalid\'. Please enter valid Status.');
alert("Status is \"Invalid\". Please enter valid Status.");
alert("\t hell0");
alert("\r hel\\rl0");
alert("\b hel\\bl0");
alert("\\n hell0");
var bob;
alert(" hell0");
bob();
var bob;
var MESSAGE_NEW_LINE = "\n\n";
var MESSAGE_INVALID = "The data for the member/user is invalid.\n"
alert("Status is \"Invalid\. Please enter valid Status.");
}
The code above will fail to validate thoroughly in the Eclipse plugin,
but does in the online jsLint app. There is a fix for this and it
will be out by tomorrow.
Stay tuned.