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

auto.$injector.has()

has(name); Allows the user to query if the particular service exists. Parameters Param Type Details name string Name of the service to query. Returns boolean true if injector has given service.

$animate.cancel()

cancel(animationPromise); Cancels the provided animation. Parameters Param Type Details animationPromise Promise The animation promise that is returned when an animation is started.

ngMessageFormat.service

Name Description $$messageFormat Angular internal service to recognize MessageFormat extensions in interpolation expressions. For more information, see: https://docs.google.com/a/google.com/document/d/1pbtW2yvtmFBikfRrJd8VAsabiFkKezmYZ_PbgdjQOVU/edit

form.FormController.$setUntouched()

$setUntouched(); Sets the form to its untouched state. This method can be called to remove the 'ng-touched' class and set the form controls to their untouched state (ng-untouched class). Setting a form controls back to their untouched state is often useful when setting the form back to its pristine state.

$rootScope.Scope.$watch()

$watch(watchExpression, listener, [objectEquality]); Registers a listener callback to be executed whenever the watchExpression changes. The watchExpression is called on every call to $digest() and should return the value that will be watched. (watchExpression should not change its value when executed multiple times with the same input because it may be executed multiple times by $digest(). That is, watchExpression should be idempotent. The listener is called only when the value from the curren

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.

ngModel.NgModelController.$untouched

$untouched boolean True if control has not lost focus yet.

ngRoute.$route.routes

routes Object Object with all route configuration Objects as its properties.

ngMock.angular.mock

object in module ngMock Namespace from 'angular-mocks.js' which contains testing related code.