Commit d24432c4 authored by Vitaly Lipatov's avatar Vitaly Lipatov

Use native form submit method, not jQuery

parent 84bd3f83
......@@ -242,7 +242,7 @@
// после чего сабмитнем форму, если всё хорошо
checkEmailFull(email, function (result) {
if (result) {
emailForm.submit();
emailForm[0] && emailForm[0].submit();
}
});
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment