16 lines
316 B
JavaScript
16 lines
316 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc service
|
|
* @name $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);
|
|
}];
|
|
}
|