diff options
Diffstat (limited to 'src/ng/document.js')
| -rw-r--r-- | src/ng/document.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ng/document.js b/src/ng/document.js index cc760477..321a3652 100644 --- a/src/ng/document.js +++ b/src/ng/document.js @@ -7,6 +7,22 @@ * * @description * A {@link angular.element jQuery or jqLite} wrapper for the browser's `window.document` object. + * + * @example + <example> + <file name="index.html"> + <div ng-controller="MainCtrl"> + <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"> + function MainCtrl($scope, $document) { + $scope.title = $document[0].title; + $scope.windowTitle = angular.element(window.document)[0].title; + } + </file> + </example> */ function $DocumentProvider(){ this.$get = ['$window', function(window){ |
