ngRoute.service

Name Description $route $route is used for deep-linking URLs to controllers and views (HTML partials). It watches $location.url() and tries to map the path to an existing route definition. $routeParams The $routeParams service allows you to retrieve the current set of route parameters.

ng.directive

Name Description ngJq Use this directive to force the angular.element library. This should be used to force either jqLite by leaving ng-jq blank or setting the name of the jquery variable under window (eg. jQuery). ngApp Use this directive to auto-bootstrap an AngularJS application. The ngApp directive designates the root element of the application and is typically placed near the root element of the page - e.g. on the <body> or <html> tags. a Modifies the default behavior of t

ngResource.service

Name Description $resource A factory which creates a resource object that lets you interact with RESTful server-side data sources.

ngComponentRouter.RouteDefinition

type in module ngComponentRouter Each item in a the RouteConfig for a Routing Component is an instance of this type. It can have the following properties: path or (regex and `serializer) - defines how to recognize and generate this route component, loader, redirectTo (requires exactly one of these) name - the name used to identify the Route Definition when generating links data (optional)

angular.isElement

function in module ng Determines if a reference is a DOM element (or wrapped jQuery element). Usage angular.isElement(value); Arguments Param Type Details value * Reference to check. Returns boolean True if value is a DOM element (or wrapped jQuery element).

ngCookies.$cookies.get()

get(key); Returns the value of given cookie key Parameters Param Type Details key string Id to use for lookup. Returns string Raw cookie value.

$templateRequest.totalPendingRequests

totalPendingRequests number total amount of pending template requests being downloaded.

ngModel.NgModelController.$setViewValue()

$setViewValue(value, trigger); Update the view value. This method should be called when a control wants to change the view value; typically, this is done from within a DOM event handler. For example, the input directive calls it when the value of the input changes and select calls it when an option is selected. When $setViewValue is called, the new value will be staged for committing through the $parsers and $validators pipelines. If there are no special ngModelOptions specified then the stage

ngRepeat

directive in module ng The ngRepeat directive instantiates a template once per item from a collection. Each template instance gets its own scope, where the given loop variable is set to the current collection item, and $index is set to the item index or key. Special properties are exposed on the local scope of each template instance, including: Variable Type Details $index number iterator offset of the repeated element (0..length-1) $first boolean true if the repeated element is first in t

ngMock.$log.assertEmpty()

assertEmpty(); Assert that all of the logging methods have no logged messages. If any messages are present, an exception is thrown.