From b7f938743aec3b211896f0bbbc10f757d0c9823a Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Fri, 13 Feb 2015 13:17:06 -0800 Subject: [PATCH] js/Common.js - Fix hard karma crash. --- js/Common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Common.js b/js/Common.js index a63a958153..ca2d5ea8a8 100644 --- a/js/Common.js +++ b/js/Common.js @@ -1,6 +1,6 @@ // https://civicrm.org/licensing /* global CRM:true */ -if (!CRM) CRM = {}; +var CRM = CRM || {}; var cj = CRM.$ = jQuery; CRM._ = _; -- 2.25.1