(details: HTMLDetailsElement)
| 87 | } |
| 88 | |
| 89 | function unwrapActions(details: HTMLDetailsElement): void { |
| 90 | details.before(markForm('read'), markForm('unread')); |
| 91 | details.hidden = true; |
| 92 | } |
| 93 | |
| 94 | function init(signal: AbortSignal): void { |
| 95 | observe('.notification-group-by', replaceDropdown, {signal}); |
nothing calls this directly
no test coverage detected