From 1d39f938bb4e4e30035aac3db5ce7397e1d955a1 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 7 Oct 2015 21:22:59 -0700 Subject: [PATCH] Tooltips on s should use container: body ; fixes #17809 --- docs/_includes/js/popovers.html | 4 ++-- docs/_includes/js/tooltips.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/_includes/js/popovers.html b/docs/_includes/js/popovers.html index 78369ea057..b539bfe165 100644 --- a/docs/_includes/js/popovers.html +++ b/docs/_includes/js/popovers.html @@ -19,8 +19,8 @@ $(function () { {% endhighlight %}
-

Popovers in button groups and input groups require special setting

-

When using popovers on elements within a .btn-group or an .input-group, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the popover is triggered).

+

Popovers in button groups, input groups, and tables require special setting

+

When using popovers on elements within a .btn-group, .input-group, or <table>, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the popover is triggered).

Don't try to show popovers on hidden elements

diff --git a/docs/_includes/js/tooltips.html b/docs/_includes/js/tooltips.html index 991c0c9c94..fd85256b2d 100644 --- a/docs/_includes/js/tooltips.html +++ b/docs/_includes/js/tooltips.html @@ -97,8 +97,8 @@ $('#example').tooltip(options)

Sometimes you want to add a tooltip to a hyperlink that wraps multiple lines. The default behavior of the tooltip plugin is to center it horizontally and vertically. Add white-space: nowrap; to your anchors to avoid this.

-

Tooltips in button groups and input groups require special setting

-

When using tooltips on elements within a .btn-group or an .input-group, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip is triggered).

+

Tooltips in button groups, input groups, and tables require special setting

+

When using tooltips on elements within a .btn-group, .input-group, or <table>, you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip is triggered).

Don't try to show tooltips on hidden elements