Removes input-group errors on re-submit
This commit is contained in:
parent
c184930f57
commit
87448147e5
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue