Removes input-group errors on re-submit

This commit is contained in:
JapSeyz 2016-06-15 21:31:05 +02:00
parent c184930f57
commit 87448147e5
1 changed files with 4 additions and 0 deletions

View File

@ -4112,6 +4112,10 @@ function clearFormErrors($form) {
$($form).find(':input')
.parent()
.removeClass('has-error');
$($form).find(':input')
.parent().parent()
.removeClass('has-error');
}
function showFormError($formElement, message) {