{ "version": 3, "sources": ["../../../views/pages/team.ts"], "sourcesContent": ["// Select all buttons inside the team section\nconst btn_members = document.querySelectorAll('section.team button')\n\n// Select the dialog element for the member\nconst member_dialog = document.querySelector(\n 'dialog.member'\n) as HTMLDialogElement\n\nconst memberHandler = (btn: HTMLButtonElement) => {\n // Get the data attributes from the button\n const name = btn.getAttribute('data-name')\n const headshot = btn.getAttribute('data-headshot')\n const specialties = JSON.parse(btn.getAttribute('data-specialties') || '[]')\n // const booksy_link = btn.getAttribute('data-booksy-link')\n const instagram_name = btn.getAttribute('data-instagram-name')\n const tiktok_name = btn.getAttribute('data-tiktok-name')\n\n // Start building the HTML for the dialog\n let elementHTML: string = '