Skip to content

Commit

Permalink
try to set the correct zindex for modals by js (#5252)
Browse files Browse the repository at this point in the history
  • Loading branch information
810 committed Mar 30, 2017
1 parent 68008cd commit e89fce0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/com_kunena/template/crypsis/assets/js/main.js
Expand Up @@ -16,6 +16,9 @@ function kunenatableOrdering(order, dir, task, form) {
}

jQuery(document).ready(function($) {
$('modal-backdrop').css("z-index", "1050");
$('modal').css("z-index", "1060");

/* To check or uncheck boxes to select items */
$('input.kcheckall').click(function () {
$('.kcheck').prop('checked', $(this).prop("checked"));
Expand Down
Expand Up @@ -16,6 +16,9 @@ function kunenatableOrdering(order, dir, task, form) {
}

jQuery(document).ready(function($) {
$('modal-backdrop').css("z-index", "1050");
$('modal').css("z-index", "1060");

/* To check or uncheck boxes to select items */
$('input.kcheckall').click(function () {
$('.kcheck').prop('checked', $(this).prop("checked"));
Expand Down

0 comments on commit e89fce0

Please sign in to comment.