diff options
| author | Patrick H. Lauke <[email protected]> | 2017-01-11 23:59:30 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-11 23:59:30 +0000 |
| commit | 97e757cfbe09f8a50a9402afb9a0cf70e74e122c (patch) | |
| tree | afb88d834e07bc878d8baf7351bd179aced6c8fb | |
| parent | 3df1bfd8cd977fb3199b9c77178f48a74eeeb224 (diff) | |
| parent | 6b48ba4e0d1f83c541d9a21c1235dc55968b6290 (diff) | |
| download | bootstrap-97e757cfbe09f8a50a9402afb9a0cf70e74e122c.tar.xz bootstrap-97e757cfbe09f8a50a9402afb9a0cf70e74e122c.zip | |
Merge pull request #21672 from patrickhlauke/v4-remove-aria-multiselectable
Remove incorrect aria-multiselectable
| -rw-r--r-- | docs/components/collapse.md | 2 | ||||
| -rw-r--r-- | js/tests/visual/collapse.html | 2 | ||||
| -rw-r--r-- | js/tests/visual/modal.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/components/collapse.md b/docs/components/collapse.md index f48efd9cc..18d1c1298 100644 --- a/docs/components/collapse.md +++ b/docs/components/collapse.md @@ -43,7 +43,7 @@ You can use a link with the `href` attribute, or a button with the `data-target` Extend the default collapse behavior to create an accordion. {% example html %} -<div id="accordion" role="tablist" aria-multiselectable="true"> +<div id="accordion" role="tablist"> <div class="card"> <div class="card-header" role="tab" id="headingOne"> <h5 class="mb-0"> diff --git a/js/tests/visual/collapse.html b/js/tests/visual/collapse.html index d16a1b0f2..21b11a257 100644 --- a/js/tests/visual/collapse.html +++ b/js/tests/visual/collapse.html @@ -10,7 +10,7 @@ <div class="container"> <h1>Collapse <small>Bootstrap Visual Test</small></h1> - <div id="accordion" role="tablist" aria-multiselectable="true"> + <div id="accordion" role="tablist"> <div class="card"> <div class="card-header" role="tab" id="headingOne"> <h5 class="mb-0"> diff --git a/js/tests/visual/modal.html b/js/tests/visual/modal.html index 33af36c5f..3aca0c96f 100644 --- a/js/tests/visual/modal.html +++ b/js/tests/visual/modal.html @@ -54,7 +54,7 @@ <h4>Tooltips in a modal</h4> <p><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top">This link</a> and <a href="#" data-toggle="tooltip" data-placement="bottom" title="Tooltip on bottom">that link</a> should have tooltips on hover.</p> - <div id="accordion" role="tablist" aria-multiselectable="true"> + <div id="accordion" role="tablist"> <div class="card"> <div class="card-header" role="tab" id="headingOne"> <h5 class="mb-0"> |
