$sce.getTrustedUrl()

getTrustedUrl(value); Shorthand method. $sce.getTrustedUrl(value) â $sceDelegate.getTrusted($sce.URL, value) Parameters Param Type Details value * The value to pass to $sce.getTrusted. Returns * The return value of $sce.getTrusted($sce.URL, value)

ngMessages.ngMessageExp

directive in module ngMessages ngMessageExp is a directive with the purpose to show and hide a particular message. For ngMessageExp to operate, a parent ngMessages directive on a parent DOM element must be situated since it determines which messages are visible based on the state of the provided key/value map that ngMessages listens on. Directive Info This directive creates new scope. This directive executes at priority level 1. Usage <!-- using attribute directives --> <ANY ng

$sce.trustAsJs()

trustAsJs(value); Shorthand method. $sce.trustAsJs(value) â $sceDelegate.trustAs($sce.JS, value) Parameters Param Type Details value * The value to trustAs. Returns * An object that can be passed to $sce.getTrustedJs(value) to obtain the original value. (privileged directives only accept expressions that are either literal constants or are the return value of $sce.trustAs.)

ngMessages.ngMessagesInclude

directive in module ngMessages ngMessagesInclude is a directive with the purpose to import existing ngMessage template code from a remote template and place the downloaded template code into the exact spot that the ngMessagesInclude directive is placed within the ngMessages container. This allows for a series of pre-defined messages to be reused and also allows for the developer to determine what messages are overridden due to the placement of the ngMessagesInclude directive. Directive I

ngTouch

Installation First include angular-touch.js in your HTML: <script src="angular.js"> <script src="angular-touch.js"> You can download this file from the following places: Google CDN e.g. //ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-touch.js Bower e.g. bower install angular-touch@X.Y.Z code.angularjs.org e.g. "//code.angularjs.org/X.Y.Z/angular-touch.js" where X.Y.Z is the AngularJS version you are running. Then load the module in your application by adding it as a

ngMock.angular.mock

object in module ngMock Namespace from 'angular-mocks.js' which contains testing related code.

select.SelectController

type in module ng The controller for the <select> directive. This provides support for reading and writing the selected value(s) of the control and also coordinates dynamically added <option> elements, perhaps by an ngRepeat directive.

auto.$injector.has()

has(name); Allows the user to query if the particular service exists. Parameters Param Type Details name string Name of the service to query. Returns boolean true if injector has given service.

angular.Module.name

name Name of the module.

angular.isDate

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