projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f58e4c2
)
File adjustments per Coleman
author
Dan Cruson
<cruson.web@gmail.com>
Sat, 13 Dec 2014 20:24:23 +0000
(15:24 -0500)
committer
Dan Cruson
<cruson.web@gmail.com>
Sat, 13 Dec 2014 20:24:23 +0000
(15:24 -0500)
Make changes to the file based on feedback from Coleman
js/crm.joomla.js
patch
|
blob
|
blame
|
history
diff --git
a/js/crm.joomla.js
b/js/crm.joomla.js
index 07fa8f9d028616a9972aff26e7d4f40a8fbb3902..331d30ffccb6f06f1aab25baf93bbff1dd4b42bb 100644
(file)
--- a/
js/crm.joomla.js
+++ b/
js/crm.joomla.js
@@
-1,7
+1,14
@@
+// http://civicrm.org/licensing
CRM.$(function($) {
$(document)
-
.on('dialogopen', function(e) {
+ .on('dialogopen', function(e) {
// J3 - Make footer admin bar hide behind popup windows (CRM-15723)
$('#status').css('z-index', '100');
})
+ .on('dialogclose', function(e) {
+ if ($('.ui-dialog-content:visible').not(e.target).length < 1) {
+ // D7 hack, restore toolbar position (CRM-15341)
+ $('#toolbar').css('z-index', '');
+ }
+ })
});