Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Tooltip: Follow the standard appendTo logic
Even though there's no reason to ever configure the parent element via an `appendTo` option, following the standard logic is useful for scrollable elements and native dialogs. Fixes #10739 Closes gh-1517
- Loading branch information
8cf9879
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is leading to suboptimal layouting in my case.

This wasn't happening with previous version.
Apparently the right boundary is "softly" limited to the dialog. I say softly because it goes beyond if the text is unbreakable. I guess this is the browser's logic (Chrome 59), probably generally good, but not in my case.
I will workaround it by wrapping the content in a PRE tag, but i wanted to let you know.