Skip to content
Snippets Groups Projects
Commit 9a03c6a7 authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #1334 from kurund/CRM-13078

CRM-13078
parents 22f96dcf ef04c554
No related branches found
No related tags found
No related merge requests found
......@@ -754,9 +754,12 @@ CRM.validate = CRM.validate || {
});
// Handle qf form errors
$('form :input.error', this).one('blur', function() {
// ignore autocomplete fields
if ($(this).is('.ac_input')) {
return;
}
$('.ui-notify-message.error a.ui-notify-close').click();
$(this).removeClass('error');
$(this).next('span.crm-error').remove();
$('label[for="' + $(this).attr('name') + '"], label[for="' + $(this).attr('id') + '"]')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment