$httpProvider.useApplyAsync()

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 current configured value. Parameters Param Type Details value (optional) boolean If true, when requests are loaded, t

ngClass

directive in module ng The ngClass directive allows you to dynamically set CSS classes on an HTML element by databinding an expression that represents all classes to be added. The directive operates in three different ways, depending on which of three types the expression evaluates to: If the expression evaluates to a string, the string should be one or more space-delimited class names. If the expression evaluates to an object, then for each key-value pair of the object with a truthy va

$locationProvider

$location provider in module ng Use the $locationProvider to configure how the application deep linking paths are stored. Methods hashPrefix([prefix]); Parameters Param Type Details prefix (optional) string Prefix for hash part (containing path and search) Returns * current value if used as getter or itself (chaining) if used as setter html5Mode([mode]); Parameters Param Type Details mode (optional) booleanObject If boolean, sets html5Mode.enabled to value. If object,

$sce.trustAsHtml()

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

auto.$injector.get()

get(name, [caller]); Return an instance of the service. Parameters Param Type Details name string The name of the instance to retrieve. caller (optional) string An optional string to provide the origin of the function call for error messages. Returns * The instance.

$cacheFactory.Cache.put()

put(key, value); Inserts a named entry into the Cache object to be retrieved later, and incrementing the size of the cache if the key was not already present in the cache. If behaving like an LRU cache, it will also remove stale entries from the set. It will not insert undefined values into the cache. Parameters Param Type Details key string the key under which the cached data is stored. value * the value to store alongside the key. If it is undefined, the key will not be stored.

$compileProvider.debugInfoEnabled()

debugInfoEnabled([enabled]); Call this method to enable/disable various debug runtime information in the compiler such as adding binding information and a reference to the current scope on to DOM elements. If enabled, the compiler will add the following to DOM elements that have been bound to the scope ng-binding CSS class $binding data property containing an array of the binding expressions You may want to disable this in production for a significant performance boost. See Disabling Debug D

$animateProvider.classNameFilter()

classNameFilter([expression]); Sets and/or returns the CSS class regular expression that is checked when performing an animation. Upon bootstrap the classNameFilter value is not set at all and will therefore enable $animate to attempt to perform an animation on any element that is triggered. When setting the classNameFilter value, animations will only be performed on elements that successfully match the filter expression. This in turn can boost performance for low-powered devices as well as ap

$interpolateProvider.endSymbol()

endSymbol([value]); Symbol to denote the end of expression in the interpolated string. Defaults to }}. Parameters Param Type Details value (optional) string new value to set the ending symbol to. Returns stringself Returns the symbol when used as getter and self if used as setter.

$sceProvider.enabled()

enabled([value]); Enables/disables SCE and returns the current value. Parameters Param Type Details value (optional) boolean If provided, then enables/disables SCE. Returns boolean true if SCE is enabled, false otherwise.