()
| 2130 | } |
| 2131 | |
| 2132 | function ensureDualPaneTargetHint() { |
| 2133 | const actions = document.getElementById('fileListActions'); |
| 2134 | if (!actions) return null; |
| 2135 | let hint = document.getElementById('dualPaneTargetHint'); |
| 2136 | if (!hint) { |
| 2137 | hint = document.createElement('div'); |
| 2138 | hint.id = 'dualPaneTargetHint'; |
| 2139 | hint.className = 'file-list-dual-hint fr-dual-target-hint'; |
| 2140 | actions.appendChild(hint); |
| 2141 | } |
| 2142 | return hint; |
| 2143 | } |
| 2144 | |
| 2145 | function updateDualPaneTargetHint() { |
| 2146 | const hint = ensureDualPaneTargetHint(); |
no outgoing calls
no test coverage detected