(e: FocusEvent)
| 102 | }; |
| 103 | |
| 104 | const onFocusIn = (e: FocusEvent) => { |
| 105 | if (isCodeInput(e.target as Element)) { |
| 106 | arm(); |
| 107 | } |
| 108 | }; |
| 109 | const onViewportResize = () => { |
| 110 | if (isCodeInput(document.activeElement)) { |
| 111 | arm(); |
nothing calls this directly
no test coverage detected