(handlerId)
| 24 | } |
| 25 | |
| 26 | function receiveHandlerId(handlerId) { |
| 27 | if (handlerId === currentHandlerId) { |
| 28 | return; |
| 29 | } |
| 30 | |
| 31 | currentHandlerId = handlerId; |
| 32 | reconnectDropTarget(); |
| 33 | } |
| 34 | |
| 35 | const hooks = wrapConnectorHooks({ |
| 36 | dropTarget: function connectDropTarget(node, options) { |
nothing calls this directly
no test coverage detected