ngCookies.$cookieStore.get()

get(key); Returns the value of given cookie key Parameters Param Type Details key string Id to use for lookup. Returns Object Deserialized cookie value, undefined if the cookie does not exist.

ngAnimate.directive

Name Description ngAnimateChildren 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. ngAnimateSwap ngAnimateSwap is a animation-oriented directive that allows for the container to be removed and entered in whenever the associated e

$log.log()

log(); Write a log message

ng.filter

Name Description filter Selects a subset of items from array and returns it as a new array. currency Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default symbol for current locale is used. number Formats a number as text. date Formats date to a string based on the requested format. json Allows you to convert a JavaScript object into JSON string. lowercase Converts string to lowercase. uppercase Converts string to uppercase. limitTo Creates a

$log.error()

error(); Write an error message

ngSanitize.filter

Name Description linky Finds links in text input and turns them into html links. Supports http/https/ftp/mailto and plain email address links.

Guide: Introduction

AngularJS is a structural framework for dynamic web apps. It lets you use HTML as your template language and lets you extend HTML's syntax to express your application's components clearly and succinctly. Angular's data binding and dependency injection eliminate much of the code you would otherwise have to write. And it all happens within the browser, making it an ideal partner with any server technology. Angular is what HTML would have been, had it been designed for applications. HTML is a grea

Guide: Forms

Controls (input, select, textarea) are ways for a user to enter data. A Form is a collection of controls for the purpose of grouping related controls together. Form and controls provide validation services, so that the user can be notified of invalid input before submitting a form. This provides a better user experience than server-side validation alone because the user gets instant feedback on how to correct the error. Keep in mind that while client-side validation plays an important role in p

ngDblclick

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

angular.element

function in module ng Wraps a raw DOM element or HTML string as a jQuery element. If jQuery is available, angular.element is an alias for the jQuery function. If jQuery is not available, angular.element delegates to Angular's built-in subset of jQuery, called "jQuery lite" or jqLite. jqLite is a tiny, API-compatible subset of jQuery that allows Angular to manipulate the DOM in a cross-browser compatible way. jqLite implements only the most commonly needed functionality with the goal of hav