(paneKey)
| 2657 | } |
| 2658 | |
| 2659 | function getPaneListForKey(paneKey) { |
| 2660 | const pane = document.querySelector( |
| 2661 | paneKey === 'secondary' ? '.file-list-pane.secondary-pane' : '.file-list-pane.primary-pane' |
| 2662 | ); |
| 2663 | if (!pane) return null; |
| 2664 | return pane.querySelector('#fileList, #fileListSecondary') || pane; |
| 2665 | } |
| 2666 | |
| 2667 | function pruneMovedFilesFromInactivePane(sourceFolder, movedFiles, sourceId = '') { |
| 2668 | if (!window.dualPaneEnabled || !sourceFolder || !window.__frPaneState) return; |
no outgoing calls
no test coverage detected