(el)
| 18 | let jsonFieldContextMenu = null; |
| 19 | |
| 20 | export function initMessageRenderer(el) { |
| 21 | elements = el; |
| 22 | |
| 23 | setupMessageListEventDelegation(); |
| 24 | setupJsonDetailEventDelegation(); |
| 25 | } |
| 26 | |
| 27 | export function setCallbacks(cb) { |
| 28 | callbacks = { ...callbacks, ...cb }; |
nothing calls this directly
no test coverage detected