You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have a tooltip that is appended to the body (tooltip-append-to-body="1") the position service does not include the margin left of the body causing the offset and left to be incorrect.
The position service appears to be significantly out of date compared to the Angular UI Bootstrap position service. There might be other bug fixes already fixed in Angular UI Bootstrap that would be worth grabbing.
The text was updated successfully, but these errors were encountered:
When you have a tooltip that is appended to the body (
tooltip-append-to-body="1"
) the position service does not include the margin left of the body causing the offset and left to be incorrect.Something like this fixes the issue for me -
offset.left = Math.round(offset.left - parseFloat(window.getComputedStyle(document.body).marginLeft));
Top might also need to be fixed.
The position service appears to be significantly out of date compared to the Angular UI Bootstrap position service. There might be other bug fixes already fixed in Angular UI Bootstrap that would be worth grabbing.
The text was updated successfully, but these errors were encountered: