aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-01-31 10:32:32 -0800
committerChris Rebert <[email protected]>2014-01-31 10:32:32 -0800
commit4b194471b0352fa583e074c4394c1fd5085cf832 (patch)
tree5555f8f591bb9e8fe01c9243c5163a07ce889fb4 /docs
parent40d3cf6cd7b28be2eb95c3f43fa9e5d493ecafce (diff)
downloadbootstrap-4b194471b0352fa583e074c4394c1fd5085cf832.tar.xz
bootstrap-4b194471b0352fa583e074c4394c1fd5085cf832.zip
fix #12484
Diffstat (limited to 'docs')
-rw-r--r--docs/javascript.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/javascript.html b/docs/javascript.html
index b0e1287ba..9f57d0725 100644
--- a/docs/javascript.html
+++ b/docs/javascript.html
@@ -941,12 +941,12 @@ $('#example').tooltip(options)
</div>
{% highlight html linenos %}
<!-- HTML to write -->
-<a href="#" data-toggle="tooltip" title="first tooltip">Hover over me</a>
+<a href="#" data-toggle="tooltip" title="Some tooltip text!">Hover over me</a>
<!-- Generated markup by the plugin -->
<div class="tooltip top">
<div class="tooltip-inner">
- Tooltip!
+ Some tooltip text!
</div>
<div class="tooltip-arrow"></div>
</div>