CRM-16839 - Simpler status msg
[civicrm-core.git] / js / crm.wordpress.js
1 // http://civicrm.org/licensing
2 CRM.$(function($) {
3 $(document)
4 .on('dialogopen', function(e) {
5 // Make admin bar hide behind popup windows
6 $('#adminmenuwrap').css('z-index', '100');
7 })
8 .on('dialogclose', function(e) {
9 if ($('.ui-dialog-content:visible').not(e.target).length < 1) {
10 // Restore admin bar position
11 $('#adminmenuwrap').css('z-index', '');
12 }
13 });
14 });