This commit is contained in:
Timothy J. Baek 2024-10-05 22:23:06 -07:00
parent 008febb6d7
commit 7ee07df26a

View File

@ -15,9 +15,13 @@
let contentContainerElement; let contentContainerElement;
let buttonsContainerElement; let buttonsContainerElement;
const updateButtonPosition = () => { const updateButtonPosition = (event) => {
setTimeout(async () => { setTimeout(async () => {
await tick(); await tick();
// Check if the event target is within the content container
if (!contentContainerElement.contains(event.target)) return;
let selection = window.getSelection(); let selection = window.getSelection();
if (selection.toString().trim().length > 0) { if (selection.toString().trim().length > 0) {