diff options
| author | Laussel Loïc <[email protected]> | 2019-02-19 14:42:08 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-02-19 15:42:08 +0200 |
| commit | 3a61df51d7d84defc0221b69d4e6f920682e3d1d (patch) | |
| tree | 156d5734e4b395894868b45f657bb473e28944c0 /site/docs/4.3/examples/carousel/index.html | |
| parent | e4ec9dfe9ce8d641a9a6715925945a84dee4052e (diff) | |
| download | bootstrap-3a61df51d7d84defc0221b69d4e6f920682e3d1d.tar.xz bootstrap-3a61df51d7d84defc0221b69d4e6f920682e3d1d.zip | |
add tabindex="-1" and aria-disabled="true" on disabled links (#28305)
Diffstat (limited to 'site/docs/4.3/examples/carousel/index.html')
| -rw-r--r-- | site/docs/4.3/examples/carousel/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/4.3/examples/carousel/index.html b/site/docs/4.3/examples/carousel/index.html index 7c5fb6677..5f63fa35f 100644 --- a/site/docs/4.3/examples/carousel/index.html +++ b/site/docs/4.3/examples/carousel/index.html @@ -19,7 +19,7 @@ extra_css: "carousel.css" <a class="nav-link" href="#">Link</a> </li> <li class="nav-item"> - <a class="nav-link disabled" href="#">Disabled</a> + <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a> </li> </ul> <form class="form-inline mt-2 mt-md-0"> |
