diff options
| author | Patrick H. Lauke <[email protected]> | 2021-01-03 13:06:58 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2021-01-28 23:32:24 +0200 |
| commit | a882614c455fa0fb3014bd474df382e085263f56 (patch) | |
| tree | daa71695c744920ffce65801ce869f963bb42357 /js/tests/integration | |
| parent | 1fd34a1a2cbda6bcb55c206a1bae584c9f969923 (diff) | |
| download | bootstrap-a882614c455fa0fb3014bd474df382e085263f56.tar.xz bootstrap-a882614c455fa0fb3014bd474df382e085263f56.zip | |
Make carousel indicators actual buttons
Diffstat (limited to 'js/tests/integration')
| -rw-r--r-- | js/tests/integration/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/tests/integration/index.html b/js/tests/integration/index.html index 9855d5d34..4c71bad91 100644 --- a/js/tests/integration/index.html +++ b/js/tests/integration/index.html @@ -20,11 +20,11 @@ </button> <div id="carouselExampleIndicators" class="carousel slide mt-2" data-bs-ride="carousel"> - <ol class="carousel-indicators"> - <li data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0"></li> - <li data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" class="active"></li> - <li data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2"></li> - </ol> + <div class="carousel-indicators"> + <button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" aria-label="Slide 1"></button> + <button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" class="active" aria-current="true" aria-label="Slide 2"></button> + <button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button> + </div> <div class="carousel-inner"> <div class="carousel-item"> |
