diff options
| author | Chris Rebert <[email protected]> | 2014-07-08 11:58:33 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-07-08 12:00:43 -0700 |
| commit | 5c1f4e1a0c7cd2f6adeedf2c2bd91ad87f32706d (patch) | |
| tree | f3a3c27fa0bbec9eca4fbe56a83f2f0a3315a5b0 /docs/examples/jumbotron-narrow | |
| parent | c23c663c7c9554a6169bdc284d33fd559f30cbe5 (diff) | |
| download | bootstrap-5c1f4e1a0c7cd2f6adeedf2c2bd91ad87f32706d.tar.xz bootstrap-5c1f4e1a0c7cd2f6adeedf2c2bd91ad87f32706d.zip | |
add role="presentation" to tab <li>s to improve accessibility
Refs #13554.
Per https://github.com/paypal/bootstrap-accessibility-plugin/blob/master/README.md#tab-panel
Credit: https://github.com/paypal/bootstrap-accessibility-plugin
[skip sauce]
Diffstat (limited to 'docs/examples/jumbotron-narrow')
| -rw-r--r-- | docs/examples/jumbotron-narrow/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/jumbotron-narrow/index.html b/docs/examples/jumbotron-narrow/index.html index 304c8fc93..3bafd77c4 100644 --- a/docs/examples/jumbotron-narrow/index.html +++ b/docs/examples/jumbotron-narrow/index.html @@ -35,9 +35,9 @@ <div class="container"> <div class="header"> <ul class="nav nav-pills pull-right" role="tablist"> - <li class="active"><a href="#">Home</a></li> - <li><a href="#">About</a></li> - <li><a href="#">Contact</a></li> + <li role="presentation" class="active"><a href="#">Home</a></li> + <li role="presentation"><a href="#">About</a></li> + <li role="presentation"><a href="#">Contact</a></li> </ul> <h3 class="text-muted">Project name</h3> </div> |
