aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIgor Minar2011-02-16 00:10:47 -0500
committerIgor Minar2011-02-16 00:10:47 -0500
commitc37bb2dc2880ac066c0a465eb6390bf870c84a29 (patch)
treef67f4810e60419c1bc9f0f0800990ccbe13c6c4e /src
parent7cf70c587e436014b2148eb4f12ecda307d25957 (diff)
downloadangular.js-c37bb2dc2880ac066c0a465eb6390bf870c84a29.tar.bz2
improving the $document docs
Closes #276
Diffstat (limited to 'src')
-rw-r--r--src/service/document.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/service/document.js b/src/service/document.js
index f15c5900..4de22a80 100644
--- a/src/service/document.js
+++ b/src/service/document.js
@@ -5,7 +5,8 @@
* @requires $window
*
* @description
- * A reference to the browser window.document, but wrapped into angular.element().
+ * A {@link angular.element jQuery (lite)}-wrapped reference to the browser's `window.document`
+ * element.
*/
angularServiceInject("$document", function(window){
return jqLite(window.document);