Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@rebertia.com>2014-01-31 22:32:32 +0400
committerChris Rebert <github@rebertia.com>2014-01-31 22:32:32 +0400
commit4b194471b0352fa583e074c4394c1fd5085cf832 (patch)
tree5555f8f591bb9e8fe01c9243c5163a07ce889fb4 /docs/javascript.html
parent40d3cf6cd7b28be2eb95c3f43fa9e5d493ecafce (diff)
fix #12484
Diffstat (limited to 'docs/javascript.html')
-rw-r--r--docs/javascript.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/javascript.html b/docs/javascript.html
index b0e1287ba3..9f57d07259 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>