1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Close the flyout menu only when clicking on main (#30448).

git-svn-id: http://svn.redmine.org/redmine/trunk@21268 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2021-11-02 22:01:58 +00:00
parent 1ef0e03d91
commit 7b9f5af952

View File

@ -2,7 +2,7 @@
function openFlyout() {
$('html').addClass('flyout-is-active');
$('#wrapper').on('click', function(e){
$('#main').on('click', function(e){
e.preventDefault();
e.stopPropagation();
closeFlyout();