From f5043002d868dda76ad0cc0e8856a0a990c03b1e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 7 Oct 2015 21:32:49 -0700 Subject: [PATCH] Be pedantically correct; refs #17809 [skip sauce] --- docs/_includes/js/popovers.html | 2 +- docs/_includes/js/tooltips.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_includes/js/popovers.html b/docs/_includes/js/popovers.html index b539bfe165..637158bb9c 100644 --- a/docs/_includes/js/popovers.html +++ b/docs/_includes/js/popovers.html @@ -20,7 +20,7 @@ $(function () {

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).

+

When using popovers on elements within a .btn-group or an .input-group, or on table-related elements (<td>, <th>, <tr>, <thead>, <tbody>, <tfoot>), 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 fd85256b2d..e72b86b094 100644 --- a/docs/_includes/js/tooltips.html +++ b/docs/_includes/js/tooltips.html @@ -98,7 +98,7 @@ $('#example').tooltip(options)

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).

+

When using tooltips on elements within a .btn-group or an .input-group, or on table-related elements (<td>, <th>, <tr>, <thead>, <tbody>, <tfoot>), 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