OvidijusParsiunas / deep-chat

Fully customizable AI chatbot component for your website
https://deepchat.dev
MIT License
1.26k stars 170 forks source link

Fix check for existence of deep-chat #194

Closed mchill closed 1 month ago

mchill commented 1 month ago

document.body.contains cannot be used to check for the existence of the deep-chat node if it is inside of a shadow DOM (for example, if it is nested in another web component). Instead, we can use getRootNode to check if the deep-chat node is attached to the document.

Fixes #193