ngAria.$ariaProvider.config()

config(config); Enables/disables various ARIA attributes Parameters Param Type Details config object object to enable/disable specific ARIA attributes ariaHidden â {boolean} â Enables/disables aria-hidden tags ariaChecked â {boolean} â Enables/disables aria-checked tags ariaDisabled â {boolean} â Enables/disables aria-disabled tags ariaRequired â {boolean} â Enables/disables aria-required tags ariaInvalid â {boolean} â Enables/disables aria-invalid tags

ngAria.$ariaProvider

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

ngAria.$aria

$ariaProvider service in module ngAria

ngAria

Installation First include angular-aria.js in your HTML: <script src="angular.js"> <script src="angular-aria.js"> You can download this file from the following places: Google CDN e.g. //ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-aria.js Bower e.g. bower install angular-aria@X.Y.Z code.angularjs.org e.g. "//code.angularjs.org/X.Y.Z/angular-aria.js" where X.Y.Z is the AngularJS version you are running. Then load the module in your application by adding it as a depen

ngApp

directive in module ng Use this directive to auto-bootstrap an AngularJS application. The ngApp directive designates the root element of the application and is typically placed near the root element of the page - e.g. on the <body> or <html> tags. There are a few things to keep in mind when using ngApp: only one AngularJS application can be auto-bootstrapped per HTML document. The first ngApp found in the document will be used to define the root element to auto-bootstrap as an

ngAnimate.service

Name Description $animateCss The $animateCss service is a useful utility to trigger customized CSS-based transitions/keyframes from a JavaScript-based animation or directly from a directive. The purpose of $animateCss is NOT to side-step how $animate and ngAnimate work, but the goal is to allow pre-existing animations or directives to create more complex animations that can be purely driven using CSS code. $animate The ngAnimate $animate service documentation is the same for the core $animat

ngAnimate.ngAnimateSwap

directive in module ngAnimate ngAnimateSwap is a animation-oriented directive that allows for the container to be removed and entered in whenever the associated expression changes. A common usecase for this directive is a rotating banner or slider component which contains one image being present at a time. When the active image changes then the old image will perform a leave animation and the new element will be inserted via an enter animation. Directive Info This directive creates new s

ngAnimate.ngAnimateChildren

directive in module ngAnimate ngAnimateChildren allows you to specify that children of this element should animate even if any of the children's parents are currently animating. By default, when an element has an active enter, leave, or move (structural) animation, child elements that also have an active structural animation are not animated. Note that even if ngAnimteChildren is set, no child animations will run when the parent element is removed from the DOM (leave animation). Directiv

ngAnimate.directive

Name Description ngAnimateChildren ngAnimateChildren allows you to specify that children of this element should animate even if any of the children's parents are currently animating. By default, when an element has an active enter, leave, or move (structural) animation, child elements that also have an active structural animation are not animated. ngAnimateSwap ngAnimateSwap is a animation-oriented directive that allows for the container to be removed and entered in whenever the associated e

ngAnimate.$animateCss

service in module ngAnimate The $animateCss service is a useful utility to trigger customized CSS-based transitions/keyframes from a JavaScript-based animation or directly from a directive. The purpose of $animateCss is NOT to side-step how $animate and ngAnimate work, but the goal is to allow pre-existing animations or directives to create more complex animations that can be purely driven using CSS code. Note that only browsers that support CSS transitions and/or keyframe animations are c