Commit 4b194471 authored by Chris Rebert's avatar Chris Rebert

fix #12484

parent 40d3cf6c
...@@ -941,12 +941,12 @@ $('#example').tooltip(options) ...@@ -941,12 +941,12 @@ $('#example').tooltip(options)
</div> </div>
{% highlight html linenos %} {% highlight html linenos %}
<!-- HTML to write --> <!-- 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 --> <!-- Generated markup by the plugin -->
<div class="tooltip top"> <div class="tooltip top">
<div class="tooltip-inner"> <div class="tooltip-inner">
Tooltip! Some tooltip text!
</div> </div>
<div class="tooltip-arrow"></div> <div class="tooltip-arrow"></div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment