@@ -44,7 +44,7 @@ Currently, ngAria interfaces with the following directives:
44
44
45
45
<h2 id="ngmodel">ngModel</h2>
46
46
47
- Much of ngAria's heavy lifting happens in the {@link ng/directive/ ngModel}
47
+ Much of ngAria's heavy lifting happens in the {@link ng.ngModel ngModel}
48
48
directive. For elements using ngModel, special attention is paid by ngAria if that element also
49
49
has a role or type of `checkbox`, `radio`, `range` or `textbox`.
50
50
@@ -143,7 +143,7 @@ it with your keyboard and at least one mobile and desktop screen reader.
143
143
<h2 id="ngvaluechecked">ngValue and ngChecked</h2>
144
144
145
145
To ease the transition between native inputs and custom controls, ngAria now supports
146
- {@link ng/directive/ ngValue ngValue} and {@link ng/directive/ ngChecked ngChecked}.
146
+ {@link ng. ngValue ngValue} and {@link ng. ngChecked ngChecked}.
147
147
The original directives were created for native inputs only, so ngAria extends
148
148
support to custom elements by managing `aria-checked` for accessibility.
149
149
@@ -165,7 +165,7 @@ Becomes:
165
165
166
166
The `disabled` attribute is only valid for certain elements such as `button`, `input` and
167
167
`textarea`. To properly disable custom element directives such as `<md-checkbox>` or `<taco-tab>`,
168
- using ngAria with {@link ng/directive/ ngDisabled} will also
168
+ using ngAria with {@link ng.ngDisabled ngDisabled} will also
169
169
add `aria-disabled`. This tells assistive technologies when a non-native input is disabled, helping
170
170
custom controls to be more accessible.
171
171
@@ -188,7 +188,7 @@ Becomes:
188
188
189
189
The boolean `required` attribute is only valid for native form controls such as `input` and
190
190
`textarea`. To properly indicate custom element directives such as `<md-checkbox>` or `<custom-input>`
191
- as required, using ngAria with {@link ng/directive/ ngRequired ngRequired} will also add
191
+ as required, using ngAria with {@link ng. ngRequired ngRequired} will also add
192
192
`aria-required`. This tells accessibility APIs when a custom control is required.
193
193
194
194
###Example
@@ -205,7 +205,7 @@ Becomes:
205
205
206
206
<h2 id="ngshow">ngShow</h2>
207
207
208
- >The {@link ng/directive/ ngShow} directive shows or hides the
208
+ >The {@link ng.ngShow ngShow} directive shows or hides the
209
209
given HTML element based on the expression provided to the `ngShow` attribute. The element is
210
210
shown or hidden by removing or adding the `.ng-hide` CSS class onto the element.
211
211
@@ -242,7 +242,7 @@ Becomes:
242
242
243
243
<h2 id="nghide">ngHide</h2>
244
244
245
- >The {@link ng/directive/ ngHide} directive shows or hides the
245
+ >The {@link ng.ngHide ngHide} directive shows or hides the
246
246
given HTML element based on the expression provided to the `ngHide` attribute. The element is
247
247
shown or hidden by removing or adding the `.ng-hide` CSS class onto the element.
248
248
0 commit comments