-
-
Notifications
You must be signed in to change notification settings - Fork 79k
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
Tooltips no longer adjust their position to stay in the viewport #17297
Comments
@hnrch02 your js doesn't work in v4 example :P |
fwiw, we definitely did drop the arrow placement stuff. You can still do some tricky stuff with constraints… something like this, won't allow the tip to leave the window… but it definitely wont be $('.js-btn-overflow').tooltip({
placement: "bottom",
constraints: [
{
to: 'scrollParent',
attachment: 'together',
pin: true
}
]
}) |
Fixed. Was caused by us now throwing an error when jQuery < v2 is used.
100% agree. The question is do we decidedly drop this as the default? I feel like it's not used that often and you can solve this with constraints as you showed. Maybe this is more of a documentation issue? |
Yeah, I'm fine leaving this as a dropped feature for now. |
v4: https://output.jsbin.com/zabazi/quiet
v3: https://output.jsbin.com/niketi/quiet
X-Ref: #17238 (comment)
The text was updated successfully, but these errors were encountered: