From 259a0e9a3a59eb2c7e95b7af8af08c111db3c835 Mon Sep 17 00:00:00 2001 From: Ricardo Nunes de Miranda Date: Sat, 21 Feb 2015 23:34:21 -0200 Subject: [PATCH] Fixing the text of the validation of email --- js/jqBootstrapValidation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/jqBootstrapValidation.js b/js/jqBootstrapValidation.js index 29cbb08..9da41d9 100755 --- a/js/jqBootstrapValidation.js +++ b/js/jqBootstrapValidation.js @@ -183,7 +183,7 @@ // EMAIL // --------------------------------------------------------- if ($this.attr("type") !== undefined && $this.attr("type").toLowerCase() === "email") { - message = "Not a valid email address"; + message = "Not a valid email address"; if ($this.data("validationValidemailMessage")) { message = $this.data("validationValidemailMessage"); } else if ($this.data("validationEmailMessage")) { @@ -791,7 +791,7 @@ name: "Validemail", type: "regex", regex: "[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\\.[A-Za-z]{2,4}", - message: "Not a valid email address" + message: "Not a valid email address" }, passwordagain: { name: "Passwordagain",