3
3
/**
4
4
* @ngdoc interface
5
5
* @name angular.Module
6
+ * @module ng
6
7
* @description
7
8
*
8
9
* Interface for configuring angular {@link angular.module modules}.
@@ -29,6 +30,7 @@ function setupModuleLoader(window) {
29
30
/**
30
31
* @ngdoc function
31
32
* @name angular.module
33
+ * @module ng
32
34
* @description
33
35
*
34
36
* The `angular.module` is a global place for creating, registering and retrieving Angular
@@ -111,6 +113,7 @@ function setupModuleLoader(window) {
111
113
/**
112
114
* @ngdoc property
113
115
* @name angular.Module#requires
116
+ * @module ng
114
117
* @propertyOf angular.Module
115
118
* @returns {Array.<string> } List of module names which must be loaded before this module.
116
119
* @description
@@ -122,6 +125,7 @@ function setupModuleLoader(window) {
122
125
/**
123
126
* @ngdoc property
124
127
* @name angular.Module#name
128
+ * @module ng
125
129
* @propertyOf angular.Module
126
130
* @returns {string } Name of the module.
127
131
* @description
@@ -132,6 +136,7 @@ function setupModuleLoader(window) {
132
136
/**
133
137
* @ngdoc method
134
138
* @name angular.Module#provider
139
+ * @module ng
135
140
* @methodOf angular.Module
136
141
* @param {string } name service name
137
142
* @param {Function } providerType Construction function for creating new instance of the
@@ -144,6 +149,7 @@ function setupModuleLoader(window) {
144
149
/**
145
150
* @ngdoc method
146
151
* @name angular.Module#factory
152
+ * @module ng
147
153
* @methodOf angular.Module
148
154
* @param {string } name service name
149
155
* @param {Function } providerFunction Function for creating new instance of the service.
@@ -155,6 +161,7 @@ function setupModuleLoader(window) {
155
161
/**
156
162
* @ngdoc method
157
163
* @name angular.Module#service
164
+ * @module ng
158
165
* @methodOf angular.Module
159
166
* @param {string } name service name
160
167
* @param {Function } constructor A constructor function that will be instantiated.
@@ -166,6 +173,7 @@ function setupModuleLoader(window) {
166
173
/**
167
174
* @ngdoc method
168
175
* @name angular.Module#value
176
+ * @module ng
169
177
* @methodOf angular.Module
170
178
* @param {string } name service name
171
179
* @param {* } object Service instance object.
@@ -177,6 +185,7 @@ function setupModuleLoader(window) {
177
185
/**
178
186
* @ngdoc method
179
187
* @name angular.Module#constant
188
+ * @module ng
180
189
* @methodOf angular.Module
181
190
* @param {string } name constant name
182
191
* @param {* } object Constant value.
@@ -189,6 +198,7 @@ function setupModuleLoader(window) {
189
198
/**
190
199
* @ngdoc method
191
200
* @name angular.Module#animation
201
+ * @module ng
192
202
* @methodOf angular.Module
193
203
* @param {string } name animation name
194
204
* @param {Function } animationFactory Factory function for creating new instance of an
@@ -223,6 +233,7 @@ function setupModuleLoader(window) {
223
233
/**
224
234
* @ngdoc method
225
235
* @name angular.Module#filter
236
+ * @module ng
226
237
* @methodOf angular.Module
227
238
* @param {string } name Filter name.
228
239
* @param {Function } filterFactory Factory function for creating new instance of filter.
@@ -234,6 +245,7 @@ function setupModuleLoader(window) {
234
245
/**
235
246
* @ngdoc method
236
247
* @name angular.Module#controller
248
+ * @module ng
237
249
* @methodOf angular.Module
238
250
* @param {string|Object } name Controller name, or an object map of controllers where the
239
251
* keys are the names and the values are the constructors.
@@ -246,6 +258,7 @@ function setupModuleLoader(window) {
246
258
/**
247
259
* @ngdoc method
248
260
* @name angular.Module#directive
261
+ * @module ng
249
262
* @methodOf angular.Module
250
263
* @param {string|Object } name Directive name, or an object map of directives where the
251
264
* keys are the names and the values are the factories.
@@ -259,6 +272,7 @@ function setupModuleLoader(window) {
259
272
/**
260
273
* @ngdoc method
261
274
* @name angular.Module#config
275
+ * @module ng
262
276
* @methodOf angular.Module
263
277
* @param {Function } configFn Execute this function on module load. Useful for service
264
278
* configuration.
@@ -270,6 +284,7 @@ function setupModuleLoader(window) {
270
284
/**
271
285
* @ngdoc method
272
286
* @name angular.Module#run
287
+ * @module ng
273
288
* @methodOf angular.Module
274
289
* @param {Function } initializationFn Execute this function after injector creation.
275
290
* Useful for application initialization.
0 commit comments