(e: MouseEvent)
| 285 | useEffect(() => { |
| 286 | const staticKeyDownHandler = keyutil.keydownWrapper(appHandleKeyDown); |
| 287 | const staticMouseDownHandler = (e: MouseEvent) => { |
| 288 | keyboardMouseDownHandler(e); |
| 289 | GlobalModel.getInstance().setIsActive(); |
| 290 | }; |
| 291 | document.addEventListener("keydown", staticKeyDownHandler); |
| 292 | document.addEventListener("mousedown", staticMouseDownHandler); |
| 293 |
nothing calls this directly
no test coverage detected