angular.isDefined

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

ngCookies.$cookieStore

service in module ngCookies Provides a key-value (string-object) storage, that is backed by session cookies. Objects put or retrieved from this storage are automatically serialized or deserialized by angular's toJson/fromJson. Requires the ngCookies module to be installed. Note: The $cookieStore service is deprecated. Please use the $cookies service instead. Dependencies $cookies Methods get(key); Returns the value of given cookie key Parameters Param Type Details key string Id

ngMock.$httpBackend.whenPUT()

whenPUT(url, [data], [headers], [keys]); Creates a new backend definition for PUT requests. For more info see when(). Parameters Param Type Details url stringRegExpfunction(string) HTTP url or function that receives a url and returns true if the url matches the current definition. data (optional) stringRegExpfunction(string) HTTP request body or function that receives data string and returns true if the data is as expected. headers (optional) Objectfunction(Object) HTTP heade

$animate.move()

move(element, parent, [after], [options]); Inserts (moves) the element into its new position in the DOM either after the after element (if provided) or as the first child within the parent element and then triggers an animation. A promise is returned that will be resolved during the next digest once the animation has completed. Parameters Param Type Details element DOMElement the element which will be moved into the new DOM position parent DOMElement the parent element which will a

ngAnimate.ngAnimateChildren

directive in module ngAnimate ngAnimateChildren allows you to specify that children of this element should animate even if any of the children's parents are currently animating. By default, when an element has an active enter, leave, or move (structural) animation, child elements that also have an active structural animation are not animated. Note that even if ngAnimteChildren is set, no child animations will run when the parent element is removed from the DOM (leave animation). Directiv

ngMockE2E.$httpBackend.whenPATCH()

whenPATCH(url, [data], [headers], [keys]); Creates a new backend definition for PATCH requests. For more info see when(). Parameters Param Type Details url stringRegExpfunction(string) HTTP url or function that receives a url and returns true if the url matches the current definition. data (optional) stringRegExp HTTP request body. headers (optional) Objectfunction(Object) HTTP headers. keys (optional) Array Array of keys to assign to regex matches in request url descri

number

filter in module ng Formats a number as text. If the input is null or undefined, it will just be returned. If the input is infinite (Infinity or -Infinity), the Infinity symbol 'â' or '-â' is returned, respectively. If the input is not a number an empty string is returned. Usage In HTML Template Binding {{ number_expression | number : fractionSize}} In JavaScript $filter('number')(number, fractionSize) Arguments Param Type Details number numberstring Number to format. fractionSize

$cacheFactory.get()

get(cacheId); Get access to a cache object by the cacheId used when it was created. Parameters Param Type Details cacheId string Name or id of a cache to access. Returns object Cache object identified by the cacheId or undefined if no such cache.

form.FormController.$addControl()

$addControl(control); Register a control with the form. Input elements using ngModelController do this automatically when they are linked. Note that the current state of the control will not be reflected on the new parent form. This is not an issue with normal use, as freshly compiled and linked controls are in a $pristine state. However, if the method is used programmatically, for example by adding dynamically created controls, or controls that have been previously removed without destroying

$http.put()

put(url, data, [config]); Shortcut method to perform PUT request. Parameters Param Type Details url string Relative or absolute URL specifying the destination of the request data * Request content config (optional) Object Optional configuration object Returns HttpPromise Future object