slmgc / react-hint

Tooltip component for React, Preact, Inferno
https://react-hint.js.org/
MIT License
335 stars 28 forks source link

Window edge detection fails #53

Open PFight opened 3 years ago

PFight commented 3 years ago

When tooltip shows to top, it do not check, that it's content visible on screen:

image

PFight commented 3 years ago

Probably fix:

            if (!isHorizontal) {
                // При вертикальном отображении left и right показывают - помещается ли содержимое по горизонатали в границах экрана
                directions.top = directions.top && directions.left && directions.right;
                directions.bottom = directions.top && directions.left && directions.right;
            }

image