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.

$rootScopeProvider

$rootScope provider in module ng Provider for the $rootScope service. Methods digestTtl(limit); Sets the number of $digest iterations the scope should attempt to execute before giving up and assuming that the model is unstable. The current default is 10 iterations. In complex applications it's possible that the dependencies between $watchs will result in several digest iterations. However if an application needs more than the default 10 digest iterations for its model to stabilize th

ngOptions

directive in module ng The ngOptions attribute can be used to dynamically generate a list of <option> elements for the <select> element using the array or object obtained by evaluating the ngOptions comprehension expression. In many cases, ngRepeat can be used on <option> elements instead of ngOptions to achieve a similar result. However, ngOptions provides some benefits such as reducing memory and increasing speed by not creating a new scope for each repeated instance, a

$controllerProvider

$controller provider in module ng The $controller service is used by Angular to create new controllers. This provider allows controller registration via the register method. Methods has(name); Parameters Param Type Details name string Controller name to check. register(name, constructor); Parameters Param Type Details name stringObject Controller name, or an object map of controllers where the keys are the names and the values are the constructors. constructor funct

ngMouseover

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