ngResource.$resource

service in module ngResource A factory which creates a resource object that lets you interact with RESTful server-side data sources. The returned resource object has action methods which provide high-level behaviors without the need to interact with the low level $http service. Requires the ngResource module to be installed. By default, trailing slashes will be stripped from the calculated URLs, which can pose problems with server backends that do not expect that behavior. This can be disa

$httpProvider

$http provider in module ng Use $httpProvider to change the default behavior of the $http service. Methods useApplyAsync([value]); Configure $http service to combine processing of multiple http responses received at around the same time via $rootScope.$applyAsync. This can result in significant performance improvement for bigger applications that make many HTTP requests concurrently (common during application bootstrap). Defaults to false. If no value is specified, returns the curren

ngModel.NgModelController.$modelValue

$modelValue * The value in the model that the control is bound to.

ngAnimate.$animate

service in module ngAnimate The ngAnimate $animate service documentation is the same for the core $animate service. Click here to learn more about animations with $animate.

ngValue

directive in module ng Binds the given expression to the value of <option> or input[radio], so that when the element is selected, the ngModel of that element is set to the bound value. ngValue is useful when dynamically generating lists of radio buttons using ngRepeat, as shown below. Likewise, ngValue can be used to generate <option> elements for the select element. In that case however, only strings are supported for the valueattribute, so the resulting ngModel will always be

ngMouseup

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

ngComponentRouter.ngOutlet

directive in module ngComponentRouter The directive that identifies where the Router should render its Components. Directive Info This directive executes at priority level 400 restrict: AE. Usage as attribute: <ANY> ... </ANY>

$parse

$parseProvider service in module ng Converts Angular expression into a function. var getter = $parse('user.name'); var setter = getter.assign; var context = {user:{name:'angular'}}; var locals = {user:{name:'local'}}; expect(getter(context)).toEqual('angular'); setter(context, 'newValue'); expect(context.user.name).toEqual('newValue'); expect(getter(context, locals)).toEqual('local'); Usage $parse(expression); Arguments Param Type Details expression string String expression to c

ngMock.angular.mock.inject

function in module ngMock NOTE: This function is also published on window for easy access.NOTE: This function is declared ONLY WHEN running tests with jasmine or mocha The inject function wraps a function into an injectable function. The inject() creates new instance of $injector per test, which is then used for resolving references. Resolving References (Underscore Wrapping) Often, we would like to inject a reference once, in a beforeEach() block and reuse this in multiple it() clauses. T

ngCookies.provider

Name Description $cookiesProvider Use $cookiesProvider to change the default behavior of the $cookies service.