Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd38ce6

Browse files
committed
docs(scope): rewrite
1 parent 2e90cdc commit dd38ce6

11 files changed

+348
-358
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ behavior and migrate your controllers one at a time: <https://gist.github.com/16
10071007

10081008
- complete rewrite of the Scope implementation with several API and semantic changes. Please see:
10091009
- [angular.scope API docs](http://docs-next.angularjs.org/#!/api/angular.scope)
1010-
- [scopes dev guide article](http://docs-next.angularjs.org/#!/guide/dev_guide.scopes)
1010+
- [scopes dev guide article](http://docs-next.angularjs.org/#!/guide/scopes)
10111011
- [scope.js source file](https://github.com/angular/angular.js/blob/master/src/Scope.js)
10121012
- breaking changes section of this changelog
10131013
- added event system to scopes (see [$on], [$emit] and [$broadcast])

docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@description
44

55
In angular, a controller is a JavaScript function(type/class) that is used to augment instances of
6-
angular {@link dev_guide.scopes Scope}, excluding the root scope. When you or angular create a new
6+
angular {@link scope Scope}, excluding the root scope. When you or angular create a new
77
child scope object via the {@link api/angular.module.ng.$rootScope.Scope#$new scope.$new} API , there is an
88
option to pass in a controller as a method argument. This will tell angular to associate the
99
controller with the new scope and to augment its behavior.

docs/content/guide/dev_guide.mvc.understanding_model.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ either a single object representing one entity (for example, a model called "pho
77
being an array of phones) or the entire data model for the application (all entities).
88

99
In angular, a model is any data that is reachable as a property of an angular {@link
10-
dev_guide.scopes Scope} object. The name of the property is the model identifier and the value is
10+
scope Scope} object. The name of the property is the model identifier and the value is
1111
any JavaScript object (including arrays and primitives).
1212

1313
The only requirement for a JavaScript object to be a model in angular is that the object must be

docs/content/guide/dev_guide.scopes.internals.ngdoc

Lines changed: 0 additions & 230 deletions
This file was deleted.

docs/content/guide/dev_guide.scopes.ngdoc

Lines changed: 0 additions & 35 deletions
This file was deleted.

docs/content/guide/dev_guide.scopes.understanding_scopes.ngdoc

Lines changed: 0 additions & 66 deletions
This file was deleted.

docs/content/guide/dev_guide.templates.databinding.ngdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ isolation without the view and the related DOM/browser dependency.
3434

3535
## Related Topics
3636

37-
* {@link dev_guide.scopes Angular Scopes}
37+
* {@link scope Angular Scopes}
3838
* {@link dev_guide.templates Angular Templates}

0 commit comments

Comments
 (0)