(e: FocusEvent)
| 168 | } |
| 169 | |
| 170 | function appFocusIn(e: FocusEvent) { |
| 171 | focusLog("focusin", getElemAsStr(e.target), "<=", getElemAsStr(e.relatedTarget)); |
| 172 | } |
| 173 | |
| 174 | function appFocusOut(e: FocusEvent) { |
| 175 | focusLog("focusout", getElemAsStr(e.target), "=>", getElemAsStr(e.relatedTarget)); |
nothing calls this directly
no test coverage detected