uppercase

filter in module ng Converts string to uppercase. Usage In HTML Template Binding {{ uppercase_expression | uppercase}} In JavaScript $filter('uppercase')()

ngKeydown

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

lowercase

filter in module ng Converts string to lowercase. Usage In HTML Template Binding {{ lowercase_expression | lowercase}} In JavaScript $filter('lowercase')()

ngMockE2E.service

Name Description $httpBackend Fake HTTP backend implementation suitable for end-to-end testing or backend-less development of applications that use the $http service.

ngMock.$log.log.logs

log.logs Array of messages logged using log().

ngCookies.$cookieStore.put()

put(key, value); Sets a value for given cookie key Parameters Param Type Details key string Id for the value. value Object Value to be stored.

ngCookies.$cookies.putObject()

putObject(key, value, [options]); Serializes and sets a value for given cookie key Parameters Param Type Details key string Id for the value. value Object Value to be stored. options (optional) Object Options object. See $cookiesProvider.defaults

ngModel.NgModelController.$viewChangeListeners

$viewChangeListeners Array.<Function> Array of functions to execute whenever the view value has changed. It is called with no arguments, and its return value is ignored. This can be used in place of additional $watches against the model value.

ngMouseenter

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

ngCut

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