Use this function to manually start up angular application.
DOM element which is the root of angular application.
An array of modules to load into the application. Each item in the array should be the name of a predefined module or a (DI annotated) function that will be invoked by the injector as a config block.
an object for defining configuration options for the application. The following keys are supported:
- `strictDi`: disable automatic function annotation for the application. This is meant to assist in finding bugs which break minified code.
Creates a deep copy of source, which should be an object or an array.
The source that will be used to make a copy. Can be any type, including primitives, null, and undefined.
Destination into which the source is copied. If provided, must be of the same type as source.
Invokes the iterator function once for each item in obj collection, which can be either an object or an array. The iterator function is invoked with iterator(value, key), where value is the value of an object property or an array element and key is the object property key or array element index. Specifying a context for the function is optional.
It is worth noting that .forEach does not iterate over inherited properties because it filters using the hasOwnProperty method.
Object to iterate over.
Iterator function.
Object to become context (this) for the iterator function.
Invokes the iterator function once for each item in obj collection, which can be either an object or an array. The iterator function is invoked with iterator(value, key), where value is the value of an object property or an array element and key is the object property key or array element index. Specifying a context for the function is optional.
It is worth noting that .forEach does not iterate over inherited properties because it filters using the hasOwnProperty method.
Object to iterate over.
Iterator function.
Object to become context (this) for the iterator function.
Invokes the iterator function once for each item in obj collection, which can be either an object or an array. The iterator function is invoked with iterator(value, key), where value is the value of an object property or an array element and key is the object property key or array element index. Specifying a context for the function is optional.
It is worth noting that .forEach does not iterate over inherited properties because it filters using the hasOwnProperty method.
Object to iterate over.
Iterator function.
Object to become context (this) for the iterator function.
Deeply extends the destination object dst by copying own enumerable properties from the src object(s) to dst. You can specify multiple src objects. If you want to preserve original objects, you can do so by passing an empty object as the target: var object = angular.merge({}, object1, object2).
Unlike extend(), merge() recursively descends into object properties of source objects, performing a deep copy.
Destination object.
Source object(s).
The angular.module is a global place for creating, registering and retrieving Angular modules. All modules (angular core or 3rd party) that should be available to an application must be registered using this mechanism.
When passed two or more arguments, a new module is created. If passed only one argument, an existing module (the name passed as the first argument to module) is retrieved.
The name of the module to create or retrieve.
The names of modules this module depends on. If specified then new module is being created. If unspecified then the module is being retrieved for further configuration.
Optional configuration function for the module.
If window.name contains prefix NG_DEFER_BOOTSTRAP! when angular.bootstrap is called, the bootstrap process will be paused until angular.resumeBootstrap() is called.
An optional array of modules that should be added to the original list of modules that the app was about to be bootstrapped with.
Generated using TypeDoc
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."