diff --git a/docs/_includes/js/popovers.html b/docs/_includes/js/popovers.html index 321c93d9bd..d72c78da8b 100644 --- a/docs/_includes/js/popovers.html +++ b/docs/_includes/js/popovers.html @@ -252,15 +252,15 @@ sagittis lacus vel augue laoreet rutrum faucibus.">
Initializes popovers for an element collection.
Reveals an element's popover. Popovers whose both title and content are zero-length are never displayed.
+Reveals an element's popover. This is considered a "manual" triggering of the popover. Popovers whose both title and content are zero-length are never displayed.
{% highlight js %}$('#element').popover('show'){% endhighlight %}Hides an element's popover.
+Hides an element's popover. This is considered a "manual" triggering of the popover.
{% highlight js %}$('#element').popover('hide'){% endhighlight %}Toggles an element's popover.
+Toggles an element's popover. This is considered a "manual" triggering of the popover.
{% highlight js %}$('#element').popover('toggle'){% endhighlight %}Attaches a tooltip handler to an element collection.
Reveals an element's tooltip. Tooltips with zero-length titles are never displayed.
+Reveals an element's tooltip. This is considered a "manual" triggering of the tooltip. Tooltips with zero-length titles are never displayed.
{% highlight js %}$('#element').tooltip('show'){% endhighlight %}Hides an element's tooltip.
+Hides an element's tooltip. This is considered a "manual" triggering of the tooltip.
{% highlight js %}$('#element').tooltip('hide'){% endhighlight %}Toggles an element's tooltip.
+Toggles an element's tooltip. This is considered a "manual" triggering of the tooltip.
{% highlight js %}$('#element').tooltip('toggle'){% endhighlight %}