Used for configuring the ARIA attributes injected and managed by ngAria.
angular.module('myApp', ['ngAria'], function config($ariaProvider) {
$ariaProvider.config({
ariaValue: true,
tabindex: false
});
});
Requires the ngAria
module to be installed.
Enables/disables various ARIA attributes
Param | Type | Details |
---|---|---|
config | object |
object to enable/disable specific ARIA attributes
|