()
| 25 | transform: `translate(2px, ${innerHeight / 2}px)`, |
| 26 | }, |
| 27 | onclick() { |
| 28 | consoleVisible = !consoleVisible; |
| 29 | if (consoleVisible) { |
| 30 | showConsole(); |
| 31 | } else { |
| 32 | hideConsole(); |
| 33 | } |
| 34 | }, |
| 35 | ontouchstart() { |
| 36 | document.addEventListener("touchmove", touchmove, { |
| 37 | passive: false, |
nothing calls this directly
no test coverage detected