diff options
| author | Chris Rebert <[email protected]> | 2015-01-13 17:06:31 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-01-13 17:06:31 -0800 |
| commit | fb6622a7d44c99323bea5bd69cb0604470bbe21a (patch) | |
| tree | 9c3d1f14722e8a47c5743e4faba175a11ad2ea87 /docs/_includes/js/tooltips.html | |
| parent | 9fdf7a26e12f17282f565bc18ca16be2ad865153 (diff) | |
| download | bootstrap-fb6622a7d44c99323bea5bd69cb0604470bbe21a.tar.xz bootstrap-fb6622a7d44c99323bea5bd69cb0604470bbe21a.zip | |
Document that calling tooltip/popover .show()/.hide() qualifies as manual triggering
Fixes #15465
[skip sauce]
Diffstat (limited to 'docs/_includes/js/tooltips.html')
| -rw-r--r-- | docs/_includes/js/tooltips.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/_includes/js/tooltips.html b/docs/_includes/js/tooltips.html index fd6cc445d..0cf91bfb5 100644 --- a/docs/_includes/js/tooltips.html +++ b/docs/_includes/js/tooltips.html @@ -213,15 +213,15 @@ $('#example').tooltip(options) <p>Attaches a tooltip handler to an element collection.</p> <h4>.tooltip('show')</h4> - <p>Reveals an element's tooltip. Tooltips with zero-length titles are never displayed.</p> + <p>Reveals an element's tooltip. This is considered a "manual" triggering of the tooltip. Tooltips with zero-length titles are never displayed.</p> {% highlight js %}$('#element').tooltip('show'){% endhighlight %} <h4>.tooltip('hide')</h4> - <p>Hides an element's tooltip.</p> + <p>Hides an element's tooltip. This is considered a "manual" triggering of the tooltip.</p> {% highlight js %}$('#element').tooltip('hide'){% endhighlight %} <h4>.tooltip('toggle')</h4> - <p>Toggles an element's tooltip.</p> + <p>Toggles an element's tooltip. This is considered a "manual" triggering of the tooltip.</p> {% highlight js %}$('#element').tooltip('toggle'){% endhighlight %} <h4>.tooltip('destroy')</h4> |
