()
| 1365 | } |
| 1366 | |
| 1367 | function scrollPayloadToBottom() { |
| 1368 | if (!UI.payloadInput) return; |
| 1369 | requestAnimationFrame(() => { |
| 1370 | UI.payloadInput.scrollTop = UI.payloadInput.scrollHeight; |
| 1371 | syncPayloadLineNumbersScroll(); |
| 1372 | }); |
| 1373 | } |
| 1374 | |
| 1375 | function updatePayloadEditorLabel() { |
| 1376 | if (!UI.payloadEditorLabel || !UI.listTab2) return; |
no test coverage detected