diff options
| author | Igor Minar | 2011-02-16 00:10:47 -0500 | 
|---|---|---|
| committer | Igor Minar | 2011-02-16 00:10:47 -0500 | 
| commit | c37bb2dc2880ac066c0a465eb6390bf870c84a29 (patch) | |
| tree | f67f4810e60419c1bc9f0f0800990ccbe13c6c4e | |
| parent | 7cf70c587e436014b2148eb4f12ecda307d25957 (diff) | |
| download | angular.js-c37bb2dc2880ac066c0a465eb6390bf870c84a29.tar.bz2 | |
improving the $document docs
Closes #276
| -rw-r--r-- | src/service/document.js | 3 | 
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); | 
