Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add appendTo feature in Tooltip #178

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

gokulb9993
Copy link

This PR solves couple of issues in react-tippy:

  1. Ability to pass appendTo as props to Tooltip. This feature is to append the tooltip in the given target Element.
  2. When appendTo is used as a function, tooltip doesn't show up

How to use:

As Function:

<Tooltip appendTo={() => { // callback function should return DOM element // Sample: return document.getElemetById('app-root') } }/>

(or)

As Element:

<Tooltip appendTo={document.getElemetById('app-root')}/>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant