/
githubmirror
/
angular.js
Обзор
Документация
Войти
/
githubmirror
/
angular.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.5.10
src/ng/document.js
33 строки
958 B
Michał Gołębiowski
chore(*): switch from JSHint/JSCS to ESLint
08 авг 2016, 13:53
08 авг 2016, 13:53
b1bc251
Код
Авторство
О чём код?
'use strict'; /** * @ngdoc service * @name $document * @requires $window * @this * * @description * A {@link angular.element jQuery or jqLite} wrapper for the browser's `window.document` object. * * @example <example module="documentExample" name="document"> <file name="index.html"> <div ng-controller="ExampleController"> <p>$document title: <b ng-bind="title"></b></p> <p>window.document title: <b ng-bind="windowTitle"></b></p> </div> </file> <file name="script.js"> angular.module('documentExample', []) .controller('ExampleController', ['$scope', '$document', function($scope, $document) { $scope.title = $document[0].title; $scope.windowTitle = angular.element(window.document)[0].title; }]); </file> </example> */ function $DocumentProvider() { this.$get = ['$window', function(window) { return jqLite(window.document); }]; }