aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrevor Ewen2014-03-19 21:06:50 -0400
committerTobias Bosch2014-03-21 13:05:29 -0700
commit375c47d0c080e9e10867b87264bad657717ecbc4 (patch)
treea53d042c40acfd4e3896ba2fddd9ca768a063736
parent8fd47a1cd54c6f8e7ba2cac8ad34fdf9bf4d74be (diff)
downloadangular.js-375c47d0c080e9e10867b87264bad657717ecbc4.tar.bz2
docs($document): add a documentation example.
The $document docs are pretty empty, and this fills them out a bit. The example itself may not be particularly useful, but it could be improved or removed later. Works for me. Closes #6757
-rw-r--r--src/ng/document.js16
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){