From 66479d8a5f1e0ed6c120c061af6fad057778942c Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Fri, 25 Dec 2015 21:13:57 +0000 Subject: [PATCH] Add aria-disabled to disabled link example and description --- docs/components/buttons.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/components/buttons.md b/docs/components/buttons.md index 0ca8c0e08e..f2e6fc6d7d 100644 --- a/docs/components/buttons.md +++ b/docs/components/buttons.md @@ -115,11 +115,11 @@ Make buttons look inactive by adding the `disabled` boolean attribute to any `Button {% endexample %} -As `` elements don't support the `disabled` attribute, you must add the `.disabled` class to fake it. +As `` elements don't support the `disabled` attribute, you must add the `.disabled` class to fake it. In addition, include the `aria-disabled="true"` attribute, to indicate the state of the element to assistive technologies. {% example html %} -Primary link -Link +Primary link +Link {% endexample %} {% callout warning %}