Files
angular.js/src/ng/document.js
T
2014-02-16 19:03:40 +00:00

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);
}];
}