()
| 1 | //Buttons are set up in this file. |
| 2 | |
| 3 | function greenBtn() { |
| 4 | const container = document.querySelector("#screenContainer"); |
| 5 | container.classList.contains("maximized") |
| 6 | ? container.classList.remove("maximized") |
| 7 | : container.classList.add("maximized"); |
| 8 | } |
| 9 | |
| 10 | function yellowBtn() { |
| 11 | bodyContainer.classList.contains("minimized") |
nothing calls this directly
no outgoing calls
no test coverage detected