CRM-15578 - crmUiLabel - On error, log more debug details
authorTim Otten <totten@civicrm.org>
Mon, 3 Nov 2014 02:20:29 +0000 (18:20 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 11 Nov 2014 00:20:50 +0000 (16:20 -0800)
js/angular-crm-ui.js

index 5fc728e3cc557be729d53f17af3354fa5d6874e1..554e571b6c3b0a24466899bf172de2bc84f391ff 100644 (file)
@@ -51,7 +51,7 @@
           var formCtrl = scope.$parent.$eval(form.attr('name'));
           var input = $('input[name="' + attrs.crmFor + '"],select[name="' + attrs.crmFor + '"],textarea[name="' + attrs.crmFor + '"]', form);
           if (form.length != 1 || input.length != 1) {
-            if (console.log) console.log('Label cannot be matched to input element. Expected to find one form and one input.', form.length, input.length);
+            if (console.log) console.log('Label cannot be matched to input element. Expected to find one form and one input[name='+attrs.crmFor+'].', form.length, input.length);
             return;
           }