mirror of
https://github.com/open-webui/open-webui
synced 2024-11-24 21:13:59 +00:00
refac
This commit is contained in:
parent
008febb6d7
commit
7ee07df26a
@ -15,9 +15,13 @@
|
||||
let contentContainerElement;
|
||||
let buttonsContainerElement;
|
||||
|
||||
const updateButtonPosition = () => {
|
||||
const updateButtonPosition = (event) => {
|
||||
setTimeout(async () => {
|
||||
await tick();
|
||||
|
||||
// Check if the event target is within the content container
|
||||
if (!contentContainerElement.contains(event.target)) return;
|
||||
|
||||
let selection = window.getSelection();
|
||||
|
||||
if (selection.toString().trim().length > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user