retrospring/app/javascript/retrospring/features/answerbox/comment/toggle.ts
2022-01-09 16:05:37 +01:00

6 lines
No EOL
229 B
TypeScript

export function commentToggleHandler(event: Event): void {
const button = event.target as HTMLButtonElement;
const id = button.dataset.aId;
document.querySelector(`#ab-comments-section-${id}`).classList.toggle('d-none');
}