diff options
| author | Johann-S <[email protected]> | 2017-05-29 21:46:11 +0200 |
|---|---|---|
| committer | Johann-S <[email protected]> | 2017-05-31 09:54:58 +0200 |
| commit | 5f493cfc74c3def557a189eca9e47dfd02084e09 (patch) | |
| tree | bafdb02f4a106e0bec39095db37369fd68c623bd /docs/components | |
| parent | ccd86bdc967d8714f718c55bd13db967f2e849d2 (diff) | |
| download | bootstrap-5f493cfc74c3def557a189eca9e47dfd02084e09.tar.xz bootstrap-5f493cfc74c3def557a189eca9e47dfd02084e09.zip | |
Remove the use of x-arrow attribute for Tooltips/Popovers arrows
Diffstat (limited to 'docs/components')
| -rw-r--r-- | docs/components/popovers.md | 10 | ||||
| -rw-r--r-- | docs/components/tooltips.md | 12 |
2 files changed, 11 insertions, 11 deletions
diff --git a/docs/components/popovers.md b/docs/components/popovers.md index 614be7e2b..d923eb291 100644 --- a/docs/components/popovers.md +++ b/docs/components/popovers.md @@ -57,7 +57,7 @@ Four options are available: top, right, bottom, and left aligned. <div class="bd-example bd-example-popover-static"> <div class="popover bs-popover-top bs-popover-top-docs"> - <div class="arrow" x-arrow></div> + <div class="arrow"></div> <h3 class="popover-title">Popover top</h3> <div class="popover-content"> <p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p> @@ -65,7 +65,7 @@ Four options are available: top, right, bottom, and left aligned. </div> <div class="popover bs-popover-right bs-popover-right-docs"> - <div class="arrow" x-arrow></div> + <div class="arrow"></div> <h3 class="popover-title">Popover right</h3> <div class="popover-content"> <p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p> @@ -73,7 +73,7 @@ Four options are available: top, right, bottom, and left aligned. </div> <div class="popover bs-popover-bottom bs-popover-bottom-docs"> - <div class="arrow" x-arrow></div> + <div class="arrow"></div> <h3 class="popover-title">Popover bottom</h3> <div class="popover-content"> <p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p> @@ -81,7 +81,7 @@ Four options are available: top, right, bottom, and left aligned. </div> <div class="popover bs-popover-left bs-popover-left-docs"> - <div class="arrow" x-arrow></div> + <div class="arrow"></div> <h3 class="popover-title">Popover left</h3> <div class="popover-content"> <p>Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p> @@ -234,7 +234,7 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap <tr> <td>template</td> <td>string</td> - <td><code>'<div class="popover" role="tooltip"><div class="arrow" x-arrow></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'</code></td> + <td><code>'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'</code></td> <td> <p>Base HTML to use when creating the popover.</p> <p>The popover's <code>title</code> will be injected into the <code>.popover-title</code>.</p> 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>'<div class="tooltip" role="tooltip"><div class="arrow" x-arrow></div><div class="tooltip-inner"></div></div>'</code></td> + <td><code>'<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner"></div></div>'</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> |
