Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
otrok7 committed Sep 9, 2024
1 parent 37c86b1 commit 26b1ddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions croutonjs/meetingMap/js/meeting_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,12 @@ function MeetingMap(inConfig) {
if (dd) dd.style.display = "none";
gDelegate.modalOn();
if (swipableModal) {
const body = document.getElementsByTagName("BODY")[0];
const body = document.body;
g_overflowX = body.style.overflowX;
const newTop = -window.scrollY+'px';
body.style.overflowX = 'hidden';
body.style.position = 'fixed';
document.body.style.setProperty('top', newTop, 'important');
body.style.setProperty('top', newTop, 'important');
}
}
function showFilterDialog(e) {
Expand Down

0 comments on commit 26b1ddb

Please sign in to comment.