File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ six==1.16.0
30
30
SQLAlchemy == 2.0.23
31
31
typing-extensions == 4.9.0
32
32
urllib3 == 2.1.0
33
- uWSGI == 2.0.23
34
33
waitress == 2.1.2
35
34
werkzeug == 3.0.1
36
35
wsproto == 1.2.0
Original file line number Diff line number Diff line change @@ -525,10 +525,12 @@ document.getElementById("settingsBtn").onclick = function() {
525
525
document . getElementById ( "settingsPopup" ) . style . display = "block" ;
526
526
} ;
527
527
528
- document . querySelector ( ".close-btn" ) . onclick = function ( ) {
529
- document . getElementById ( "settingsPopup" ) . style . display = "none" ;
530
- document . getElementById ( "olympusPopup" ) . style . display = "none" ;
531
- } ;
528
+ document . querySelectorAll ( ".close-btn" ) . forEach ( button => {
529
+ button . addEventListener ( 'click' , function ( event ) {
530
+ document . getElementById ( "settingsPopup" ) . style . display = "none" ;
531
+ document . getElementById ( "olympusPopup" ) . style . display = "none" ;
532
+ } )
533
+ } )
532
534
533
535
// Close the popup if user clicks outside of it
534
536
window . onclick = function ( event ) {
You can’t perform that action at this time.
0 commit comments