(el)
| 174 | } |
| 175 | |
| 176 | function getPaneSourceIdForElement(el) { |
| 177 | const pane = el?.closest?.('.file-list-pane'); |
| 178 | if (!pane) return ''; |
| 179 | const paneKey = pane.classList.contains('secondary-pane') ? 'secondary' : 'primary'; |
| 180 | return window.__frPaneState?.[paneKey]?.sourceId || ''; |
| 181 | } |
| 182 | |
| 183 | function getPaneFolderForElement(el) { |
| 184 | const pane = el?.closest?.('.file-list-pane'); |
no outgoing calls
no test coverage detected