Fix for shiki copy button animation firing off after clicking copy button

This commit is contained in:
Elijah 2024-10-28 15:26:36 +00:00
parent ab4fd41e55
commit 512e985a05

View File

@ -33,8 +33,8 @@ def copy_script() -> Any:
f"""
// Event listener for the parent click
document.addEventListener('click', function(event) {{
// Find the closest div (parent element)
const parent = event.target.closest('div');
// Find the closest button (parent element)
const parent = event.target.closest('button');
// If the parent is found
if (parent) {{
// Find the SVG element within the parent