diff options
| author | Mark Otto <[email protected]> | 2014-07-07 20:29:51 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-07 20:29:51 -0700 |
| commit | 25a90958406b04e07f5ba42c88112a170b043e20 (patch) | |
| tree | 9e457d4dede37e611f8a58cd09d0fa8c1489c84c /docs/examples | |
| parent | 32affe98356ccee4f3dfae17e3c4d47c7efb25ce (diff) | |
| parent | 2e3f1a23f6703d985f3017526dc9ba1c7ddbe4e3 (diff) | |
| download | bootstrap-25a90958406b04e07f5ba42c88112a170b043e20.tar.xz bootstrap-25a90958406b04e07f5ba42c88112a170b043e20.zip | |
Merge branch 'master' of github.com:twbs/bootstrap
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/carousel/index.html | 12 | ||||
| -rw-r--r-- | docs/examples/theme/index.html | 4 |
2 files changed, 12 insertions, 4 deletions
diff --git a/docs/examples/carousel/index.html b/docs/examples/carousel/index.html index efe2c9754..42998f1e4 100644 --- a/docs/examples/carousel/index.html +++ b/docs/examples/carousel/index.html @@ -81,7 +81,7 @@ <li data-target="#myCarousel" data-slide-to="1"></li> <li data-target="#myCarousel" data-slide-to="2"></li> </ol> - <div class="carousel-inner"> + <div class="carousel-inner" role="listbox"> <div class="item active"> <img src="data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==" alt="First slide"> <div class="container"> @@ -113,8 +113,14 @@ </div> </div> </div> - <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a> - <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a> + <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"> + <span class="glyphicon glyphicon-chevron-left"></span> + <span class="sr-only">Previous</span> + </a> + <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> + <span class="glyphicon glyphicon-chevron-right"></span> + <span class="sr-only">Next</span> + </a> </div><!-- /.carousel --> diff --git a/docs/examples/theme/index.html b/docs/examples/theme/index.html index 0f686c32e..2412b2206 100644 --- a/docs/examples/theme/index.html +++ b/docs/examples/theme/index.html @@ -620,7 +620,7 @@ <li data-target="#carousel-example-generic" data-slide-to="1"></li> <li data-target="#carousel-example-generic" data-slide-to="2"></li> </ol> - <div class="carousel-inner"> + <div class="carousel-inner" role="listbox"> <div class="item active"> <img data-src="holder.js/1140x500/auto/#777:#555/text:First slide" alt="First slide"> </div> @@ -633,9 +633,11 @@ </div> <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> + <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> + <span class="sr-only">Next</span> </a> </div> |
