Skip to content

Commit

Permalink
Fix twbs#12563: Reiterate that empty tooltips+popovers do not get dis…
Browse files Browse the repository at this point in the history
…played
  • Loading branch information
blankmaker committed Oct 2, 2014
1 parent 33afb8a commit 6fa7495
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/_includes/js/popovers.html
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ <h4>$().popover(options)</h4>
<p>Initializes popovers for an element collection.</p>

<h4>.popover('show')</h4>
<p>Reveals an element's popover.</p>
<p>Reveals an element's popover. Popovers whose both title and content are zero-length are never displayed.</p>
{% highlight js %}$('#element').popover('show'){% endhighlight %}

<h4>.popover('hide')</h4>
Expand Down
2 changes: 1 addition & 1 deletion docs/_includes/js/tooltips.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ <h4>$().tooltip(options)</h4>
<p>Attaches a tooltip handler to an element collection.</p>

<h4>.tooltip('show')</h4>
<p>Reveals an element's tooltip.</p>
<p>Reveals an element's tooltip. Tooltips with zero-length titles are never displayed.</p>
{% highlight js %}$('#element').tooltip('show'){% endhighlight %}

<h4>.tooltip('hide')</h4>
Expand Down

0 comments on commit 6fa7495

Please sign in to comment.