()
| 545 | this.setSize(512, 512) |
| 546 | } |
| 547 | show() { |
| 548 | this.popup.classList.add("active") |
| 549 | document.addEventListener("keydown", this.keyHandlerBound, true) |
| 550 | document.addEventListener("keyup", this.keyHandlerBound, true) |
| 551 | } |
| 552 | hide() { |
| 553 | this.popup.classList.remove("active") |
| 554 | document.removeEventListener("keydown", this.keyHandlerBound, true) |
no test coverage detected