aboutsummaryrefslogtreecommitdiff
path: root/docs/components/tooltips.md
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2017-05-29 21:46:11 +0200
committerJohann-S <[email protected]>2017-05-31 09:54:58 +0200
commit5f493cfc74c3def557a189eca9e47dfd02084e09 (patch)
treebafdb02f4a106e0bec39095db37369fd68c623bd /docs/components/tooltips.md
parentccd86bdc967d8714f718c55bd13db967f2e849d2 (diff)
downloadbootstrap-5f493cfc74c3def557a189eca9e47dfd02084e09.tar.xz
bootstrap-5f493cfc74c3def557a189eca9e47dfd02084e09.zip
Remove the use of x-arrow attribute for Tooltips/Popovers arrows
Diffstat (limited to 'docs/components/tooltips.md')
-rw-r--r--docs/components/tooltips.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md
index 2e630e93e..739ba608a 100644
--- a/docs/components/tooltips.md
+++ b/docs/components/tooltips.md
@@ -52,25 +52,25 @@ Four options are available: top, right, bottom, and left aligned.
<div class="bd-example bd-example-tooltip-static">
<div class="tooltip bs-tooltip-top bs-tooltip-top-docs" role="tooltip">
- <div class="arrow" x-arrow></div>
+ <div class="arrow"></div>
<div class="tooltip-inner">
Tooltip on the top
</div>
</div>
<div class="tooltip bs-tooltip-right bs-tooltip-right-docs" role="tooltip">
- <div class="arrow" x-arrow></div>
+ <div class="arrow"></div>
<div class="tooltip-inner">
Tooltip on the right
</div>
</div>
<div class="tooltip bs-tooltip-bottom bs-tooltip-bottom-docs" role="tooltip">
- <div class="arrow" x-arrow></div>
+ <div class="arrow"></div>
<div class="tooltip-inner">
Tooltip on the bottom
</div>
</div>
<div class="tooltip bs-tooltip-left bs-tooltip-left-docs" role="tooltip">
- <div class="arrow" x-arrow></div>
+ <div class="arrow"></div>
<div class="tooltip-inner">
Tooltip on the left
</div>
@@ -140,7 +140,7 @@ You should only add tooltips to HTML elements that are traditionally keyboard-fo
<!-- Generated markup by the plugin -->
<div class="tooltip bs-tooltip-top" role="tooltip">
- <div class="arrow" x-arrow></div>
+ <div class="arrow"></div>
<div class="tooltip-inner">
Some tooltip text!
</div>
@@ -213,7 +213,7 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
<tr>
<td>template</td>
<td>string</td>
- <td><code>'&lt;div class="tooltip" role="tooltip"&gt;&lt;div class="arrow" x-arrow&gt;&lt;/div&gt;&lt;div class="tooltip-inner"&gt;&lt;/div&gt;&lt;/div&gt;'</code></td>
+ <td><code>'&lt;div class="tooltip" role="tooltip"&gt;&lt;div class="arrow"&gt;&lt;/div&gt;&lt;div class="tooltip-inner"&gt;&lt;/div&gt;&lt;/div&gt;'</code></td>
<td>
<p>Base HTML to use when creating the tooltip.</p>
<p>The tooltip's <code>title</code> will be injected into the <code>.tooltip-inner</code>.</p>