select.SelectController

type in module ng The controller for the <select> directive. This provides support for reading and writing the selected value(s) of the control and also coordinates dynamically added <option> elements, perhaps by an ngRepeat directive.

angular.Module

type in module ng Interface for configuring angular modules. Methods provider(name, providerType); See $provide.provider(). Parameters Param Type Details name string service name providerType Function Construction function for creating new instance of the service. factory(name, providerFunction); See $provide.factory(). Parameters Param Type Details name string service name providerFunction Function Function for creating new instance of the service. servi

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.

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

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.

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.

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.

$rootScope.Scope.$destroy()

$destroy(); Removes the current scope (and all of its children) from the parent scope. Removal implies that calls to $digest() will no longer propagate to the current scope and its children. Removal also implies that the current scope is eligible for garbage collection. The $destroy() is usually used by directives such as ngRepeat for managing the unrolling of the loop. Just before a scope is destroyed, a $destroy event is broadcasted on this scope. Application code can register a $destroy eve

ngSanitize.provider

Name Description $sanitizeProvider Creates and configures $sanitize instance.

ngRoute

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