$animateProvider.classNameFilter()

classNameFilter([expression]); Sets and/or returns the CSS class regular expression that is checked when performing an animation. Upon bootstrap the classNameFilter value is not set at all and will therefore enable $animate to attempt to perform an animation on any element that is triggered. When setting the classNameFilter value, animations will only be performed on elements that successfully match the filter expression. This in turn can boost performance for low-powered devices as well as ap

ngClassOdd

directive in module ng The ngClassOdd and ngClassEven directives work exactly as ngClass, except they work in conjunction with ngRepeat and take effect only on odd (even) rows. This directive can be applied only within the scope of an ngRepeat. Directive Info This directive executes at priority level 0. Usage as attribute: <ANY ng-class-odd="expression"> ... </ANY> as CSS class: <ANY class="ng-class-odd: expression;"> ... </ANY> Arguments Param Type Details

$templateRequest

$templateRequestProvider service in module ng The $templateRequest service runs security checks then downloads the provided template using $http and, upon success, stores the contents inside of $templateCache. If the HTTP request fails or the response data of the HTTP request is empty, a $compile error will be thrown (the exception can be thwarted by setting the 2nd parameter of the function to true). Note that the contents of $templateCache are trusted, so the call to $sce.getTrustedUrl

ngMousemove

directive in module ng Specify custom behavior on mousemove event. Directive Info This directive executes at priority level 0. Usage as attribute: <ANY ng-mousemove="expression"> ... </ANY> Arguments Param Type Details ngMousemove expression Expression to evaluate upon mousemove. (Event object is available as $event)

ngPaste

directive in module ng Specify custom behavior on paste event. Directive Info This directive executes at priority level 0. Usage as attribute: <window, input, select, textarea, a ng-paste="expression"> ... </window, input, select, textarea, a> Arguments Param Type Details ngPaste expression Expression to evaluate upon paste. (Event object is available as $event)

ngMinlength

directive in module ng ngMinlength adds the minlength validator to ngModel. It is most often used for text-based input controls, but can also be applied to custom text-based controls. The validator sets the minlength error key if the ngModel.$viewValue is shorter than the integer obtained by evaluating the Angular expression given in the ngMinlength attribute value. Note: This directive is also added when the plain minlength attribute is used, with two differences: ngMinlength does not s

ngHide

directive in module ng The ngHide directive shows or hides the given HTML element based on the expression provided to the ngHide attribute. The element is shown or hidden by removing or adding the ng-hide CSS class onto the element. The .ng-hide CSS class is predefined in AngularJS and sets the display style to none (using an !important flag). For CSP mode please add angular-csp.css to your html file (see ngCsp). <!-- when $scope.myValue is truthy (element is hidden) --> <div ng-h

ngKeyup

directive in module ng Specify custom behavior on keyup event. Directive Info This directive executes at priority level 0. Usage as attribute: <ANY ng-keyup="expression"> ... </ANY> Arguments Param Type Details ngKeyup expression Expression to evaluate upon keyup. (Event object is available as $event and can be interrogated for keyCode, altKey, etc.)

$cacheFactory.Cache.destroy()

destroy(); Destroys the Cache object entirely, removing it from the $cacheFactory set.

Guide: Accessibility

The goal of ngAria is to improve Angular's default accessibility by enabling common ARIA attributes that convey state or semantic information for assistive technologies used by persons with disabilities. ##Including ngAria Using ngAria is as simple as requiring the ngAria module in your application. ngAria hooks into standard AngularJS directives and quietly injects accessibility support into your application at runtime. angular.module('myApp', ['ngAria'])... ###Using ngAria Most of what ngAri