Bug in scrolling when opening one modal on top of the other

0

When I click on Menu in the link link (go to the restricted area, login: admin and password: admin) it opens modal normally, with scrolling and everything else, all right. When I click to view one of the menus it opens another modal and it is fine too.

The problem is when I close this modal of menu view; the modal bass is no longer scrolling, and you can not see all of it. It seems that the scrolling is only for the current modal.

I think it's something in the HTML / CSS of it, because this code was not made by me and it's in CakePHP, a framework that I'm not familiar with.

    
asked by anonymous 05.02.2016 / 14:08

1 answer

0

Try to use nicescroll

link

I do not know if I understood your question well, but you can add overflow to js.

$(document).ready(

  function() { 
    $(".divcomheight").niceScroll();
  }

);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

Try to use, anything can execute the function after 100 ms with settimeout.

    
05.02.2016 / 14:45