improving the $document docs

Closes #276
This commit is contained in:
Igor Minar 2011-02-16 00:10:47 -05:00
parent 7cf70c587e
commit c37bb2dc28

View file

@ -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);