blob: 570f9360faa16b7e5ba0232cb64435415c00b0be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
'use strict';
/**
* @ngdoc object
* @name ng.$document
* @requires $window
*
* @description
* A {@link angular.element jQuery or jqLite} wrapper for the browser's `window.document` object.
*/
function $DocumentProvider(){
this.$get = ['$window', function(window){
return jqLite(window.document);
}];
}
|