aboutsummaryrefslogtreecommitdiffstats
path: root/src/loader.js
diff options
context:
space:
mode:
authorPeter Bacon Darwin2014-02-06 13:33:42 +0000
committerPeter Bacon Darwin2014-02-16 19:03:40 +0000
commit6483dea08c6fae937e62ce242212152d7ef27d91 (patch)
treee6dc6994bea75598287d128f21f85f75acc18de6 /src/loader.js
parentcceb455fb167571e26341ded6b595dafd4d92bc6 (diff)
downloadangular.js-6483dea08c6fae937e62ce242212152d7ef27d91.tar.bz2
docs(bike-shed-migration): Add missing module tag
The generator is able to imply the module from the containing folder for most files but these are in the ng module but are stored at the root folder.
Diffstat (limited to 'src/loader.js')
-rw-r--r--src/loader.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/loader.js b/src/loader.js
index 787fcbfa..d41ff593 100644
--- a/src/loader.js
+++ b/src/loader.js
@@ -3,6 +3,7 @@
/**
* @ngdoc interface
* @name angular.Module
+ * @module ng
* @description
*
* Interface for configuring angular {@link angular.module modules}.
@@ -29,6 +30,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc function
* @name angular.module
+ * @module ng
* @description
*
* The `angular.module` is a global place for creating, registering and retrieving Angular
@@ -111,6 +113,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc property
* @name angular.Module#requires
+ * @module ng
* @propertyOf angular.Module
* @returns {Array.<string>} List of module names which must be loaded before this module.
* @description
@@ -122,6 +125,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc property
* @name angular.Module#name
+ * @module ng
* @propertyOf angular.Module
* @returns {string} Name of the module.
* @description
@@ -132,6 +136,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#provider
+ * @module ng
* @methodOf angular.Module
* @param {string} name service name
* @param {Function} providerType Construction function for creating new instance of the
@@ -144,6 +149,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#factory
+ * @module ng
* @methodOf angular.Module
* @param {string} name service name
* @param {Function} providerFunction Function for creating new instance of the service.
@@ -155,6 +161,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#service
+ * @module ng
* @methodOf angular.Module
* @param {string} name service name
* @param {Function} constructor A constructor function that will be instantiated.
@@ -166,6 +173,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#value
+ * @module ng
* @methodOf angular.Module
* @param {string} name service name
* @param {*} object Service instance object.
@@ -177,6 +185,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#constant
+ * @module ng
* @methodOf angular.Module
* @param {string} name constant name
* @param {*} object Constant value.
@@ -189,6 +198,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#animation
+ * @module ng
* @methodOf angular.Module
* @param {string} name animation name
* @param {Function} animationFactory Factory function for creating new instance of an
@@ -223,6 +233,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#filter
+ * @module ng
* @methodOf angular.Module
* @param {string} name Filter name.
* @param {Function} filterFactory Factory function for creating new instance of filter.
@@ -234,6 +245,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#controller
+ * @module ng
* @methodOf angular.Module
* @param {string|Object} name Controller name, or an object map of controllers where the
* keys are the names and the values are the constructors.
@@ -246,6 +258,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#directive
+ * @module ng
* @methodOf angular.Module
* @param {string|Object} name Directive name, or an object map of directives where the
* keys are the names and the values are the factories.
@@ -259,6 +272,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#config
+ * @module ng
* @methodOf angular.Module
* @param {Function} configFn Execute this function on module load. Useful for service
* configuration.
@@ -270,6 +284,7 @@ function setupModuleLoader(window) {
/**
* @ngdoc method
* @name angular.Module#run
+ * @module ng
* @methodOf angular.Module
* @param {Function} initializationFn Execute this function after injector creation.
* Useful for application initialization.