5
5
* @name ngAria
6
6
* @description
7
7
*
8
- * The `ngAria` module provides support for adding aria tags that convey state or semantic information
9
- * about the application in order to allow assistive technologies to convey appropriate information to
10
- * persons with disabilities.
8
+ * The `ngAria` module provides support for adding <abbr title="Accessible Rich Internet Applications">ARIA</abbr>
9
+ * attributes that convey state or semantic information about the application in order to allow assistive technologies
10
+ * to convey appropriate information to persons with disabilities.
11
11
*
12
12
* <div doc-module-components="ngAria"></div>
13
13
*
14
14
* # Usage
15
- * To enable the addition of the aria tags, just require the module into your application and the tags will
15
+ * To enable the addition of the ARIA tags, just require the module into your application and the tags will
16
16
* hook into your ng-show/ng-hide, input, textarea, button, select and ng-required directives and adds the
17
- * appropriate aria-tags .
17
+ * appropriate ARIA attributes .
18
18
*
19
- * Currently, the following aria tags are implemented:
19
+ * Currently, the following ARIA attributes are implemented:
20
20
*
21
21
* + aria-hidden
22
22
* + aria-checked
29
29
* + aria-valuemax
30
30
* + tabindex
31
31
*
32
- * You can disable individual aria tags by using the {@link ngAria.$ariaProvider#config config} method.
32
+ * You can disable individual ARIA attributes by using the {@link ngAria.$ariaProvider#config config} method.
33
33
*/
34
34
35
35
/* global -ngAriaModule */
@@ -42,7 +42,7 @@ var ngAriaModule = angular.module('ngAria', ['ng']).
42
42
*
43
43
* @description
44
44
*
45
- * Used for configuring aria attributes.
45
+ * Used for configuring ARIA attributes.
46
46
*
47
47
* ## Dependencies
48
48
* Requires the {@link ngAria} module to be installed.
@@ -63,7 +63,7 @@ function $AriaProvider() {
63
63
* @ngdoc method
64
64
* @name $ariaProvider#config
65
65
*
66
- * @param {object } config object to enable/disable specific aria tags
66
+ * @param {object } config object to enable/disable specific ARIA attributes
67
67
*
68
68
* - **ariaHidden** – `{boolean}` – Enables/disables aria-hidden tags
69
69
* - **ariaChecked** – `{boolean}` – Enables/disables aria-checked tags
@@ -75,7 +75,7 @@ function $AriaProvider() {
75
75
* - **tabindex** – `{boolean}` – Enables/disables tabindex tags
76
76
*
77
77
* @description
78
- * Enables/disables various aria tags
78
+ * Enables/disables various ARIA attributes
79
79
*/
80
80
this . config = function ( newConfig ) {
81
81
config = angular . extend ( config , newConfig ) ;
@@ -108,7 +108,7 @@ function $AriaProvider() {
108
108
*
109
109
* @description
110
110
*
111
- * Contains helper methods for applying aria tags to HTML
111
+ * Contains helper methods for applying ARIA attributes to HTML
112
112
*
113
113
* ## Dependencies
114
114
* Requires the {@link ngAria} module to be installed.
0 commit comments