AngularJS - Remove UI-Utils library
[civicrm-core.git] / ang / crmUi.ang.php
index c3cddd3466f2cd55d9cea4243ec7d6c27b5075ef..0cdb8d9f5ad920b7f3eeb017d367552f49e114d1 100644 (file)
@@ -1,17 +1,17 @@
 <?php
 // This file declares an Angular module which can be autoloaded
-$isDebug = Civi::settings()->get('debug_enabled');
+$isPretty = \Civi::settings()->get('debug_enabled') && !defined('CIVICRM_KARMA');
 
 return [
   'ext' => 'civicrm',
   'js' => ['ang/crmUi.js'],
   'partials' => ['ang/crmUi'],
+  'css' => ['ang/crmUI.css'],
   'requires' => array_merge(
     [
       'crmResource',
-      'ui.utils',
     ],
     // Only require the +10kb if we're likely to need it.
-    $isDebug ? ['jsonFormatter'] : []
+    $isPretty ? ['jsonFormatter'] : []
   ),
 ];