15 lines
421 B
JavaScript
15 lines
421 B
JavaScript
|
// http://civicrm.org/licensing
|
||
|
CRM.$(function($) {
|
||
|
$(document)
|
||
|
.on('dialogopen', function(e) {
|
||
|
// Make admin bar hide behind popup windows
|
||
|
$('#adminmenuwrap').css('z-index', '100');
|
||
|
})
|
||
|
.on('dialogclose', function(e) {
|
||
|
if ($('.ui-dialog-content:visible').not(e.target).length < 1) {
|
||
|
// Restore admin bar position
|
||
|
$('#adminmenuwrap').css('z-index', '');
|
||
|
}
|
||
|
});
|
||
|
});
|