$rootScope.Scope.$parent

$parent Reference to the parent scope.

ngModel.NgModelController.$viewValue

$viewValue * The actual value from the control's view. For input elements, this is a String. See ngModel.NgModelController for information about when the $viewValue is set.

angular.Module.service()

service(name, constructor); See $provide.service(). Parameters Param Type Details name string service name constructor Function A constructor function that will be instantiated.

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.

lowercase

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

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.)

ngModel.NgModelController.$touched

$touched boolean True if control has lost focus.

angular.isDate

function in module ng Determines if a value is a date. Usage angular.isDate(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is a Date.

angular.Module.name

name Name of the module.

form.FormController.$invalid

$invalid boolean True if at least one containing control or form is invalid.