From ef04c554ce9f4d4fc3b3adeeaa3628de99751c68 Mon Sep 17 00:00:00 2001 From: kurund Date: Mon, 5 Aug 2013 10:42:22 +0530 Subject: [PATCH] CRM-13078, typo fixes ---------------------------------------- * CRM-13078: Batch Data Entry silently drops 'batch-valid' entries if no contact_id is associated with them http://issues.civicrm.org/jira/browse/CRM-13078 --- js/Common.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/Common.js b/js/Common.js index e2382e29a7..70c6692ad3 100644 --- a/js/Common.js +++ b/js/Common.js @@ -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') + '"]') -- 2.25.1