commit/galaxy-central: dan: Add some missing semi-colons to javascript on templates/user/register.mako
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/7815c237d0dd/ Changeset: 7815c237d0dd User: dan Date: 2014-03-28 20:53:19 Summary: Add some missing semi-colons to javascript on templates/user/register.mako Affected #: 1 file diff -r 8af219b52f5ed11cccac4d49cb35ce71441cb91b -r 7815c237d0ddd998e300f6aec94b7a118e60420e templates/user/register.mako --- a/templates/user/register.mako +++ b/templates/user/register.mako @@ -56,7 +56,7 @@ $(".errormessage").html(message) } else { var div = document.createElement("div"); - div.className = "errormessage" + div.className = "errormessage"; div.innerHTML = message; document.body.insertBefore(div, document.body.firstChild); } @@ -78,7 +78,7 @@ var validForm = true; var email = $('#email_input').val(); - var name = $('#name_input').val() + var name = $('#name_input').val(); if (email.length > 255){ renderError(error_text_email_long); validForm = false;} else if (!validateString(email,"email")){ renderError(error_text_email); validForm = false;} else if (!($('#password_input').val() === $('#password_check_input').val())){ renderError(error_text_password_match); validForm = false;} Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org