(el)
| 181 | } |
| 182 | |
| 183 | function getPaneFolderForElement(el) { |
| 184 | const pane = el?.closest?.('.file-list-pane'); |
| 185 | if (!pane) return ''; |
| 186 | const paneKey = pane.classList.contains('secondary-pane') ? 'secondary' : 'primary'; |
| 187 | return window.__frPaneState?.[paneKey]?.currentFolder || ''; |
| 188 | } |
| 189 | |
| 190 | function getPaneFileDataForElement(el) { |
| 191 | const pane = el?.closest?.('.file-list-pane'); |
no outgoing calls
no test coverage detected