()
| 550 | document.addEventListener("keyup", this.keyHandlerBound, true) |
| 551 | } |
| 552 | hide() { |
| 553 | this.popup.classList.remove("active") |
| 554 | document.removeEventListener("keydown", this.keyHandlerBound, true) |
| 555 | document.removeEventListener("keyup", this.keyHandlerBound, true) |
| 556 | } |
| 557 | setSize(width, height) { |
| 558 | width = parseInt(width) |
| 559 | height = parseInt(height) |
no test coverage detected