CRM-15723 Joomla 3 Footer Bar Overlay
[civicrm-core.git] / js / crm.joomla.js
1 CRM.$(function($) {
2 $(document)
3 .on('dialogopen', function(e) {
4 // J3 - Make footer admin bar hide behind popup windows (CRM-15723)
5 $('#status').css('z-index', '100');
6 })
7 });