aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/js/tooltips.html
diff options
context:
space:
mode:
authorSteven Black <[email protected]>2015-02-25 04:00:37 +0200
committerXhmikosR <[email protected]>2015-03-03 18:22:09 +0200
commit457885075f8fa004f3a190efdcf381af218e1bb7 (patch)
tree2bca5372ef834b621c63a3af1ed4e84d1bf7ddda /docs/_includes/js/tooltips.html
parent420a8088a4086cf06d930070404531cba8db8a8d (diff)
downloadbootstrap-457885075f8fa004f3a190efdcf381af218e1bb7.tar.xz
bootstrap-457885075f8fa004f3a190efdcf381af218e1bb7.zip
Javascript docs: Accessibility and cosmetic changes to headings.
Closes #15915 by merging it.
Diffstat (limited to 'docs/_includes/js/tooltips.html')
-rw-r--r--docs/_includes/js/tooltips.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/_includes/js/tooltips.html b/docs/_includes/js/tooltips.html
index 77a0d5cb5..c3fe17ec2 100644
--- a/docs/_includes/js/tooltips.html
+++ b/docs/_includes/js/tooltips.html
@@ -209,22 +209,22 @@ $('#example').tooltip(options)
<h3 id="tooltips-methods">Methods</h3>
- <h4>$().tooltip(options)</h4>
+ <h4><code>$().tooltip(options)</code></h4>
<p>Attaches a tooltip handler to an element collection.</p>
- <h4>.tooltip('show')</h4>
+ <h4><code>.tooltip('show')</code></h4>
<p>Reveals an element's tooltip. <strong>Returns to the caller before the tooltip has actually been shown</strong> (i.e. before the <code>shown.bs.tooltip</code> event occurs). 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>
+ <h4><code>.tooltip('hide')</code></h4>
<p>Hides an element's tooltip. <strong>Returns to the caller before the tooltip has actually been hidden</strong> (i.e. before the <code>hidden.bs.tooltip</code> event occurs). This is considered a "manual" triggering of the tooltip.</p>
{% highlight js %}$('#element').tooltip('hide'){% endhighlight %}
- <h4>.tooltip('toggle')</h4>
+ <h4><code>.tooltip('toggle')</code></h4>
<p>Toggles an element's tooltip. <strong>Returns to the caller before the tooltip has actually been shown or hidden</strong> (i.e. before the <code>shown.bs.tooltip</code> or <code>hidden.bs.tooltip</code> event occurs). This is considered a "manual" triggering of the tooltip.</p>
{% highlight js %}$('#element').tooltip('toggle'){% endhighlight %}
- <h4>.tooltip('destroy')</h4>
+ <h4><code>.tooltip('destroy')</code></h4>
<p>Hides and destroys an element's tooltip. Tooltips that use delegation (which are created using <a href="#tooltips-options">the <code>selector</code> option</a>) cannot be individually destroyed on descendant trigger elements.</p>
{% highlight js %}$('#element').tooltip('destroy'){% endhighlight %}