Skip to content

Commit

Permalink
Merge branch 'fosatech:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
PWRxPSYCHO authored Feb 23, 2024
2 parents 3acd7ec + dd20897 commit df6641d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ six==1.16.0
SQLAlchemy==2.0.23
typing-extensions==4.9.0
urllib3==2.1.0
uWSGI==2.0.23
waitress==2.1.2
werkzeug==3.0.1
wsproto==1.2.0
Expand Down
10 changes: 6 additions & 4 deletions webapp/static/js/rtlDataDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -525,10 +525,12 @@ document.getElementById("settingsBtn").onclick = function() {
document.getElementById("settingsPopup").style.display = "block";
};

document.querySelector(".close-btn").onclick = function() {
document.getElementById("settingsPopup").style.display = "none";
document.getElementById("olympusPopup").style.display = "none";
};
document.querySelectorAll(".close-btn").forEach(button => {
button.addEventListener('click', function(event) {
document.getElementById("settingsPopup").style.display = "none";
document.getElementById("olympusPopup").style.display = "none";
})
})

// Close the popup if user clicks outside of it
window.onclick = function(event) {
Expand Down

0 comments on commit df6641d

Please sign in to comment.