aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/document.js
diff options
context:
space:
mode:
authorIgor Minar2011-02-16 20:15:06 -0500
committerIgor Minar2011-02-17 22:58:59 -0800
commita070ff5ad08450a1eb6375790fc90693d624e283 (patch)
tree3863774d3eee5f02c9e70f227399d66e9a6d5690 /src/service/document.js
parentc90abf057b0370cf5beb62aa960f1df008c802ef (diff)
downloadangular.js-a070ff5ad08450a1eb6375790fc90693d624e283.tar.bz2
make all built-in services lazy
now that we require DI everywhere, we don't need any of these services to be eager - they get initialized when and only when they are requested.
Diffstat (limited to 'src/service/document.js')
-rw-r--r--src/service/document.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service/document.js b/src/service/document.js
index 4de22a80..fe8670c6 100644
--- a/src/service/document.js
+++ b/src/service/document.js
@@ -10,4 +10,4 @@
*/
angularServiceInject("$document", function(window){
return jqLite(window.document);
-}, ['$window'], true);
+}, ['$window']);