aboutsummaryrefslogtreecommitdiff
path: root/components.html
diff options
context:
space:
mode:
authorBas Bosman <[email protected]>2013-08-12 17:55:25 +0200
committerBas Bosman <[email protected]>2013-08-12 17:56:10 +0200
commit8dd45053ce70227f9a18531f7a110cc05c41c15e (patch)
tree4807523af0fae1d46869ff56bae47d835c796a40 /components.html
parent175a112548120500022882d6d2e9bede720f568b (diff)
downloadbootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.tar.xz
bootstrap-8dd45053ce70227f9a18531f7a110cc05c41c15e.zip
Add missing aria-hidden attribs to close buttons
Diffstat (limited to 'components.html')
-rw-r--r--components.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/components.html b/components.html
index 4c52d59f3..07c26593c 100644
--- a/components.html
+++ b/components.html
@@ -1917,13 +1917,13 @@ body { padding-bottom: 70px; }
<p>Build on any alert by adding an optional <code>.alert-dismissable</code> and close button.</p>
<div class="bs-example">
<div class="alert alert-dismissable">
- <button type="button" class="close" data-dismiss="alert">&times;</button>
+ <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
</div>
{% highlight html %}
<div class="alert alert-dismissable">
- <button type="button" class="close" data-dismiss="alert">&times;</button>
+ <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
{% endhighlight %}