@@ -109,16 +109,9 @@ function $AriaProvider() {
109
109
config = angular . extend ( config , newConfig ) ;
110
110
} ;
111
111
112
- function camelCase ( input ) {
113
- return input . replace ( / - ./ g, function ( letter , pos ) {
114
- return letter [ 1 ] . toUpperCase ( ) ;
115
- } ) ;
116
- }
117
-
118
-
119
112
function watchExpr ( attrName , ariaAttr , negate ) {
120
- var ariaCamelName = camelCase ( ariaAttr ) ;
121
113
return function ( scope , elem , attr ) {
114
+ var ariaCamelName = attr . $normalize ( ariaAttr ) ;
122
115
if ( config [ ariaCamelName ] && ! attr [ ariaCamelName ] ) {
123
116
scope . $watch ( attr [ attrName ] , function ( boolVal ) {
124
117
if ( negate ) {
@@ -178,7 +171,7 @@ function $AriaProvider() {
178
171
this . $get = function ( ) {
179
172
return {
180
173
config : function ( key ) {
181
- return config [ camelCase ( key ) ] ;
174
+ return config [ key ] ;
182
175
} ,
183
176
$$watchExpr : watchExpr
184
177
} ;
@@ -194,8 +187,8 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
194
187
} ] )
195
188
. directive ( 'ngModel' , [ '$aria' , function ( $aria ) {
196
189
197
- function shouldAttachAttr ( attr , elem ) {
198
- return $aria . config ( attr ) && ! elem . attr ( attr ) ;
190
+ function shouldAttachAttr ( attr , normalizedAttr , elem ) {
191
+ return $aria . config ( normalizedAttr ) && ! elem . attr ( attr ) ;
199
192
}
200
193
201
194
function getShape ( attr , elem ) {
@@ -213,7 +206,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
213
206
require : '?ngModel' ,
214
207
link : function ( scope , elem , attr , ngModel ) {
215
208
var shape = getShape ( attr , elem ) ;
216
- var needsTabIndex = shouldAttachAttr ( 'tabindex' , elem ) ;
209
+ var needsTabIndex = shouldAttachAttr ( 'tabindex' , 'tabindex' , elem ) ;
217
210
218
211
function ngAriaWatchModelValue ( ) {
219
212
return ngModel . $modelValue ;
@@ -241,7 +234,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
241
234
switch ( shape ) {
242
235
case 'radio' :
243
236
case 'checkbox' :
244
- if ( shouldAttachAttr ( 'aria-checked' , elem ) ) {
237
+ if ( shouldAttachAttr ( 'aria-checked' , 'ariaChecked' , elem ) ) {
245
238
scope . $watch ( ngAriaWatchModelValue , shape === 'radio' ?
246
239
getRadioReaction ( ) : ngAriaCheckboxReaction ) ;
247
240
}
@@ -262,7 +255,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
262
255
}
263
256
break ;
264
257
case 'multiline' :
265
- if ( shouldAttachAttr ( 'aria-multiline' , elem ) ) {
258
+ if ( shouldAttachAttr ( 'aria-multiline' , 'ariaMultiline' , elem ) ) {
266
259
elem . attr ( 'aria-multiline' , true ) ;
267
260
}
268
261
break ;
@@ -272,15 +265,15 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
272
265
elem . attr ( 'tabindex' , 0 ) ;
273
266
}
274
267
275
- if ( ngModel . $validators . required && shouldAttachAttr ( 'aria-required' , elem ) ) {
268
+ if ( ngModel . $validators . required && shouldAttachAttr ( 'aria-required' , 'ariaRequired' , elem ) ) {
276
269
scope . $watch ( function ngAriaRequiredWatch ( ) {
277
270
return ngModel . $error . required ;
278
271
} , function ngAriaRequiredReaction ( newVal ) {
279
272
elem . attr ( 'aria-required' , ! ! newVal ) ;
280
273
} ) ;
281
274
}
282
275
283
- if ( shouldAttachAttr ( 'aria-invalid' , elem ) ) {
276
+ if ( shouldAttachAttr ( 'aria-invalid' , 'ariaInvalid' , elem ) ) {
284
277
scope . $watch ( function ngAriaInvalidWatch ( ) {
285
278
return ngModel . $invalid ;
286
279
} , function ngAriaInvalidReaction ( newVal ) {
0 commit comments