()
| 349 | fullContentDiv.title = 'Click to collapse'; |
| 350 | |
| 351 | const collapseHandler = function() { |
| 352 | previewDiv.style.display = 'block'; |
| 353 | fullContentDiv.style.display = 'none'; |
| 354 | fullContentDiv.removeEventListener('click', collapseHandler); |
| 355 | }; |
| 356 | |
| 357 | fullContentDiv.addEventListener('click', collapseHandler); |
| 358 | } |
nothing calls this directly
no outgoing calls
no test coverage detected