(target: EventTarget | null)
| 137 | const CHAT_DROP_ZONE_SELECTOR = "[class*=\"messagesWrapper\"], [class*=\"chatContent\"], [class*=\"channelTextArea\"]"; |
| 138 | |
| 139 | function isChatAreaDrop(target: EventTarget | null): boolean { |
| 140 | return target instanceof Element && Boolean(target.closest(CHAT_DROP_ZONE_SELECTOR)); |
| 141 | } |
| 142 | |
| 143 | function handleDragOver(event: DragEvent): void { |
| 144 | if (!settings.store.bypassDragDrop) return; |
no outgoing calls
no test coverage detected