(ev)
| 189 | let __ctxBoundOnce = false; |
| 190 | |
| 191 | function docClickClose(ev) { |
| 192 | const m = qMenu(); if (!m || m.hidden) return; |
| 193 | if (!m.contains(ev.target)) hideFileContextMenu(); |
| 194 | } |
| 195 | function docKeyClose(ev) { |
| 196 | if (ev.key === 'Escape') hideFileContextMenu(); |
| 197 | } |
nothing calls this directly
no test coverage detected