revert:docs(guide/scope): access the current element's scope in the console

This reverts commit c6bd58eb58.
The recommended approach of just typing scope does not appear to work out of the box.

See https://github.com/angular/angular.js/pull/4884#issuecomment-273686380
This commit is contained in:
Peter Bacon Darwin
2017-01-19 07:55:33 +00:00
parent d85b3f56ac
commit 83b67b6c54
+1 -1
View File
@@ -183,7 +183,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()` or just type $scope
3. To retrieve the associated scope in console execute: `angular.element($0).scope()`
## Scope Events Propagation