aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/document.js
blob: fe8670c6ad0d728afbb16ff45e9b0cd63e2533d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @workInProgress
 * @ngdoc service
 * @name angular.service.$document
 * @requires $window
 *
 * @description
 * A {@link angular.element jQuery (lite)}-wrapped reference to the browser's `window.document`
 * element.
 */
angularServiceInject("$document", function(window){
  return jqLite(window.document);
}, ['$window']);