From c6b57f1ec6d8b541c3d6b2019a5ad0544745522a Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Mon, 1 Dec 2014 14:59:09 +0200 Subject: [PATCH] docs(guide/accessibility): fix dangling links --- docs/content/guide/accessibility.ngdoc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/content/guide/accessibility.ngdoc b/docs/content/guide/accessibility.ngdoc index 609a7547..c4c99042 100644 --- a/docs/content/guide/accessibility.ngdoc +++ b/docs/content/guide/accessibility.ngdoc @@ -31,12 +31,12 @@ added it as a dependency, you can test a few things: ##Supported directives Currently, ngAria interfaces with the following directives: - * ngModel - * ngDisabled - * ngShow - * ngHide - * ngClick - * ngDblClick + * {@link guide/accessibility#ngmodel ngModel} + * {@link guide/accessibility#ngdisabled ngDisabled} + * {@link guide/accessibility#ngshow ngShow} + * {@link guide/accessibility#nghide ngHide} + * {@link guide/accessibility#ngclick ngClick} + * {@link guide/accessibility#ngdblclick ngDblClick}

ngModel

@@ -206,9 +206,9 @@ shown or hidden by removing or adding the `.ng-hide` CSS class onto the element. The default CSS for `ngHide`, the inverse method to `ngShow`, makes ngAria redundant. It toggles `aria-hidden` on the directive when it is hidden or shown, but the content is already hidden with -`display: none`. See explanation for ngShow when overriding the default CSS. +`display: none`. See explanation for {@link guide/accessibility#ngshow ngShow} when overriding the default CSS. -

ngClick and ngDblclick

+

ngClick and ngDblclick

If `ng-click` or `ng-dblclick` is encountered, ngAria will add `tabindex` if it isn't there already. Even with this, you must currently still add `ng-keypress` to non-interactive elements such as `div` or `taco-button` to enable keyboard access. Conversation is currently ongoing about whether ngAria