aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/document.js
blob: ae13c1ede5d629429a8f38436886d219044955cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

/**
 * @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']);