aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.services.creating_services.ngdoc
diff options
context:
space:
mode:
authorMisko Hevery2011-11-12 14:57:43 -0800
committerMisko Hevery2011-11-14 20:31:19 -0800
commit8d6dc0b9a7b3dbff5f8edb3217b60b0cc5b66be4 (patch)
treea1c21a3d6a13c36460cd33e326bff5a4b2c61462 /docs/content/guide/dev_guide.services.creating_services.ngdoc
parentacbd7cdf320f0570fcc1952c8680d4c78bc8fa2c (diff)
downloadangular.js-8d6dc0b9a7b3dbff5f8edb3217b60b0cc5b66be4.tar.bz2
del($eager): removed the support for $eager services
Diffstat (limited to 'docs/content/guide/dev_guide.services.creating_services.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.services.creating_services.ngdoc3
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/content/guide/dev_guide.services.creating_services.ngdoc b/docs/content/guide/dev_guide.services.creating_services.ngdoc
index 397f86c7..06d57d77 100644
--- a/docs/content/guide/dev_guide.services.creating_services.ngdoc
+++ b/docs/content/guide/dev_guide.services.creating_services.ngdoc
@@ -14,9 +14,6 @@ The `angular.module.ng` method accepts three parameters:
- `$inject` - {Array.<string>} - Array of service ids this service depends on. These services
will be passed as arguments into the factory function in the same order specified in the `$inject`
array. Defaults to `[]`.
- - `$eager` - {boolean} - If true, the service factory will be called and the service will be
-instantiated when angular boots. If false, the service will be lazily instantiated when it is first
-requested during instantiation of a dependant. Defaults to `false`.
The `this` of the factory function is bound to the root scope of the angular application.