Skip to content

Commit

Permalink
Fix display button interactivity
Browse files Browse the repository at this point in the history
  • Loading branch information
lowzonenose committed Dec 6, 2023
1 parent aa5ac0d commit ec83b78
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/js/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ class MenuNavigation {
DOM.$layerManagerBtn.classList.add('d-none');
DOM.$geolocateBtn.classList.add('d-none');
DOM.$filterPoiBtn.classList.add('d-none');
DOM.$interactivityBtn.classList.add('d-none');
DOM.$whiteScreen.classList.remove('d-none');
DOM.$backTopLeftBtn.classList.remove('d-none');
DOM.$backTopLeftBtn.style.boxShadow = "unset";
Expand Down Expand Up @@ -278,10 +279,6 @@ class MenuNavigation {
document.querySelector(".autocompresultselected").classList.remove("autocompresultselected");
}
document.body.style.overflowY = "auto";
DOM.$sideBySideBtn.classList.remove('d-none');
DOM.$layerManagerBtn.classList.remove('d-none');
DOM.$filterPoiBtn.classList.add('d-none');
DOM.$geolocateBtn.classList.remove('d-none');
DOM.$whiteScreen.classList.add('d-none');
DOM.$backTopLeftBtn.classList.add('d-none');
DOM.$backTopLeftBtn.style.removeProperty("box-shadow");
Expand Down Expand Up @@ -399,6 +396,7 @@ class MenuNavigation {
DOM.$sideBySideBtn.classList.remove('d-none');
DOM.$layerManagerBtn.classList.remove('d-none');
DOM.$filterPoiBtn.classList.remove('d-none');
DOM.$interactivityBtn.classList.remove('d-none');
DOM.$geolocateBtn.classList.remove('d-none');
switch (id) {
case "informations":
Expand Down

0 comments on commit ec83b78

Please sign in to comment.