CRM-15723 Joomla 3 Footer Bar Overlay
authorDan Cruson <cruson.web@gmail.com>
Sat, 13 Dec 2014 20:09:17 +0000 (15:09 -0500)
committerDan Cruson <cruson.web@gmail.com>
Sat, 13 Dec 2014 20:09:17 +0000 (15:09 -0500)
Fix issue with the Joomla 3 admin footer overlaying the action buttons

CRM/Utils/System/Joomla.php
js/crm.joomla.js [new file with mode: 0644]

index 07ba3ed32dbf33f06f69e8ac01149d2fed3141af..bef5c5780f82717f4a5dc1402b0273bfa402ed3c 100644 (file)
@@ -882,5 +882,12 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
       parent::outputError($content);
     }
   }
+  
+  /**
+   * Append to coreResourcesList
+   */
+  function appendCoreResources(&$list) {
+    $list[] = 'js/crm.joomla.js';
+  }
 }
 
diff --git a/js/crm.joomla.js b/js/crm.joomla.js
new file mode 100644 (file)
index 0000000..07fa8f9
--- /dev/null
@@ -0,0 +1,7 @@
+CRM.$(function($) {
+  $(document)
+       .on('dialogopen', function(e) {
+      // J3 - Make footer admin bar hide behind popup windows (CRM-15723)
+      $('#status').css('z-index', '100');
+    })
+});