aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/scope.ngdoc
diff options
context:
space:
mode:
authorsmarigowda2013-11-11 15:04:02 +0000
committerPete Bacon Darwin2013-11-26 06:45:48 +0000
commitc6bd58eb587a825bddee06a91ecd4e747a750c8c (patch)
treea371cf5eac104c4b4c5153fe326531d2eb49f82e /docs/content/guide/scope.ngdoc
parentc2e45c769ef7a45f2bd14870236fd8e8bed38246 (diff)
downloadangular.js-c6bd58eb587a825bddee06a91ecd4e747a750c8c.tar.bz2
docs(guide/scope): access the current element's scope in the console.
Closes #4884
Diffstat (limited to 'docs/content/guide/scope.ngdoc')
-rw-r--r--docs/content/guide/scope.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/scope.ngdoc b/docs/content/guide/scope.ngdoc
index b765d969..70224c82 100644
--- a/docs/content/guide/scope.ngdoc
+++ b/docs/content/guide/scope.ngdoc
@@ -177,7 +177,7 @@ To examine the scope in the debugger:
2. The debugger allows you to access the currently selected element in the console as `$0`
variable.
- 3. To retrieve the associated scope in console execute: `angular.element($0).scope()`
+ 3. To retrieve the associated scope in console execute: `angular.element($0).scope()` or just type $scope
## Scope Events Propagation