mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-19 13:05:57 +08:00
docs($document): update example to use a module
This commit is contained in:
@@ -9,18 +9,19 @@
|
||||
* A {@link angular.element jQuery or jqLite} wrapper for the browser's `window.document` object.
|
||||
*
|
||||
* @example
|
||||
<example>
|
||||
<example module="documentExample">
|
||||
<file name="index.html">
|
||||
<div ng-controller="MainCtrl">
|
||||
<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">
|
||||
function MainCtrl($scope, $document) {
|
||||
$scope.title = $document[0].title;
|
||||
$scope.windowTitle = angular.element(window.document)[0].title;
|
||||
}
|
||||
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>
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user