Inbound Call
Jan 11, 2023
Agent: John Doe | Duration: 3m 14s
`; // Add toggle functionality const toggleButton = openExample.querySelector("[data-paste-element='SUMMARY_DETAIL_TOGGLE_BUTTON']"); const content = openExample.querySelector("[data-paste-element='SUMMARY_DETAIL_CONTENT']"); const heading = openExample.querySelector("[data-paste-element='SUMMARY_DETAIL_HEADING']"); let isOpen = true; const toggle = () => { isOpen = !isOpen; content.style.display = isOpen ? "block" : "none"; toggleButton.textContent = isOpen ? "▼" : "▶"; }; toggleButton.addEventListener("click", toggle); heading.addEventListener("click", toggle); } // State hook example const stateHookExample = document.getElementById("state-hook-example"); if (stateHookExample) { stateHookExample.innerHTML = ` This Summary Detail should take 500ms to open and close.