blob: 93d4d9a577706a9126aa942bc9934e3c7b637982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* @workInProgress
* @ngdoc service
* @name angular.service.$document
* @requires $window
*
* @description
* Reference to the browser window.document, but wrapped into angular.element().
*/
angularServiceInject("$document", function(window){
return jqLite(window.document);
}, ['$window'], true);
|