From 2240cf5c0b81883e374027333a8807f0b68e5cfb Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Fri, 3 Apr 2015 22:07:54 -0400 Subject: [PATCH] Js lint fix --- templates/CRM/Contact/Page/View/Summary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Contact/Page/View/Summary.js b/templates/CRM/Contact/Page/View/Summary.js index 6021ee449c..960ec099c1 100644 --- a/templates/CRM/Contact/Page/View/Summary.js +++ b/templates/CRM/Contact/Page/View/Summary.js @@ -11,7 +11,7 @@ // Copied from crm.ajax.js if (window.CKEDITOR && window.CKEDITOR.instances) { $.each(CKEDITOR.instances, function() { - this.updateElement && this.updateElement(); + if (this.updateElement) this.updateElement(); }); } if (window.tinyMCE && tinyMCE.editors) { -- 2.25.1