(e)
| 2596 | } |
| 2597 | |
| 2598 | function paneDragOverHandler(e) { |
| 2599 | if (!window.dualPaneEnabled) return; |
| 2600 | if (!isPaneDropTargetAllowed(e.target)) return; |
| 2601 | e.preventDefault(); |
| 2602 | e.currentTarget.classList.add('fr-pane-drop-target'); |
| 2603 | } |
| 2604 | |
| 2605 | function paneDragLeaveHandler(e) { |
| 2606 | e.currentTarget.classList.remove('fr-pane-drop-target'); |
nothing calls this directly
no test coverage detected