7 lines
259 B
TypeScript
7 lines
259 B
TypeScript
|
export default function optionsEntryHandler(event: Event): void {
|
||
|
const button = event.target as HTMLElement;
|
||
|
const inboxId = button.dataset.ibId;
|
||
|
|
||
|
const options = document.querySelector(`#ib-options-${inboxId}`);
|
||
|
options.classList.toggle('d-none');
|
||
|
}
|