ngForm

directive in module ng Nestable alias of form directive. HTML does not allow nesting of form elements. It is useful to nest forms, for example if the validity of a sub-group of controls needs to be determined. Note: the purpose of ngForm is to group controls, but not to be a replacement for the <form> tag with all of its capabilities (e.g. posting to the server, ...). Directive Info This directive executes at priority level 0. Usage as element: (This directive can be used as custo

ngFocus

directive in module ng Specify custom behavior on focus event. Note: As the focus event is executed synchronously when calling input.focus() AngularJS executes the expression using scope.$evalAsync if the event is fired during an $apply to ensure a consistent state. Directive Info This directive executes at priority level 0. Usage as attribute: <window, input, select, textarea, a ng-focus="expression"> ... </window, input, select, textarea, a> Arguments Param Type Detail

ngDisabled

directive in module ng This directive sets the disabled attribute on the element if the expression inside ngDisabled evaluates to truthy. A special directive is necessary because we cannot use interpolation inside the disabled attribute. See the interpolation guide for more info. Directive Info This directive executes at priority level 100. Usage as attribute: <INPUT ng-disabled="expression"> ... </INPUT> Arguments Param Type Details ngDisabled expression If the exp

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)

ngCut

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

ngCsp

directive in module ng Angular has some features that can break certain CSP (Content Security Policy) rules. If you intend to implement these rules then you must tell Angular not to use these features. This is necessary when developing things like Google Chrome Extensions or Universal Windows Apps. The following rules affect Angular: unsafe-eval: this rule forbids apps to use eval or Function(string) generated functions (among other things). Angular makes use of this in the $parse service

ngCopy

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

ngCookies.service

Name Description $cookieStore 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. $cookies Provides read/write access to browser's cookies.

ngCookies.provider

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

ngCookies.$cookieStore.remove()

remove(key); Remove given cookie Parameters Param Type Details key string Id of the key-value pair to delete.