aboutsummaryrefslogtreecommitdiff
path: root/components.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-12 09:55:46 -0700
committerMark Otto <[email protected]>2013-08-12 09:55:46 -0700
commit1f745176d4e667fd75a492509a4e08ca54af07ae (patch)
tree4b26f1507d29115131db7494bd4f2427e0339d6e /components.html
parent657c19f94343e2349eef3e8640baaf7b21562fb3 (diff)
parent8dd45053ce70227f9a18531f7a110cc05c41c15e (diff)
downloadbootstrap-1f745176d4e667fd75a492509a4e08ca54af07ae.tar.xz
bootstrap-1f745176d4e667fd75a492509a4e08ca54af07ae.zip
Merge pull request #9384 from BBosman/aria-hidden
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 00bd56bf1..7031647d6 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 %}