mirror of
https://github.com/open-webui/open-webui
synced 2024-11-25 05:18:15 +00:00
refac
This commit is contained in:
parent
008febb6d7
commit
7ee07df26a
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user