-
Notifications
You must be signed in to change notification settings - Fork 137
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
Responsive Results #114
Comments
Unfortunately PowerTip doesn't handle this scenario on it's own. Since tooltips are absolutely positioned on the document (based off the document dimensions when the tooltip was opened) the tooltip elements will remain in a fixed position within the document. The current workaround is to call the For example: $(someElements).hide(function() {
$.powerTip.reposition(elementWithTooltip);
}); Currently the Another possible way to handle this would be with a MutationObserver, and have PowerTip run the I'll think about this one. Right now improving the |
I appreciate your feedback. Thanks! Thanks,
On Tue, Apr 29, 2014 at 8:08 PM, Steven Benner [email protected]:
|
This plugin is really cool. One issue I've come across is the growth of items in a page. For example:
Let's suppose you had 50 elements on a page vertically. Of those 50 suppose 40 of them are hidden with a jquery hide method. Based on what you select from the 10 elements showing, the other 40 items, little by little, start "showing"/"fading in". The body/page length has now changed.
From using this plugin, it doesn't seem, yet, that the tooltip popup positions adjust for the changing length of the body.
I look forward to upcoming changes.
The text was updated successfully, but these errors were encountered: