Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit f6fedb7

Browse files
committed
Changes for cleanup/clarity.
1 parent 8e2b68a commit f6fedb7

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

docs/content/guide/decorators.ngdoc

+19-8
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,21 @@
1212

1313
## What are decorators?
1414

15-
Decorators are used to facilitate a decorator design pattern. This pattern is used to separate modification or
16-
*decoration* of a class without modifying the original source code. In Angular, decorators are functions that allow a
17-
service, directive or filter to be modified prior to its usage.
15+
Decorators are a design pattern that is used to separate modification or *decoration* of a class without modifying the
16+
original source code. In Angular, decorators are functions that allow a service, directive or filter to be modified
17+
prior to its usage.
1818

19-
## $provide.decorator
19+
## How to use decorators
20+
21+
There are two ways to register decorators
22+
23+
- `$provide.decorator`, and
24+
- `module.decorator`
25+
26+
Each provide access to a `$delegate`, which is the instantiated service/directive/filter, prior to being passed to the
27+
service that required it.
28+
29+
### $provide.decorator
2030

2131
The {@link api/auto/service/$provide#decorator decorator function} allows access to a $delegate of the service once it
2232
has been instantiated. For example:
@@ -52,8 +62,9 @@ directive, or filter being decorated.
5262
The `$delegate` may be either modified or completely replaced. Given a service `myService` with a method `someFn`, the
5363
following could all be viable solutions:
5464

65+
66+
#### Completely Replace the $delgeate
5567
```js
56-
// replace the $delegate completely
5768
angular.module('myApp', [])
5869

5970
.config([ '$provide', function($provide) {
@@ -71,8 +82,8 @@ angular.module('myApp', [])
7182
}]);
7283
```
7384

85+
#### Patch the $delegate
7486
```js
75-
// patch the $delegate
7687
angular.module('myApp', [])
7788

7889
.config([ '$provide', function($provide) {
@@ -95,8 +106,8 @@ angular.module('myApp', [])
95106
}]);
96107
```
97108

109+
#### Augment the $delegate
98110
```js
99-
// augment the $delegate
100111
angular.module('myApp', [])
101112

102113
.config([ '$provide', function($provide) {
@@ -145,7 +156,7 @@ the end of the name. The `$delegate` provided is dictated by the type of service
145156
or adversely affect the functionality of the framework.
146157
</div>
147158

148-
## module.decorator
159+
### module.decorator
149160

150161
This {@link api/ng/type/angular.Module#decorator function} is the same as the `$provide.decorator` function except it is
151162
exposed through the module API. This allows you to separate your decorator patterns from your module config blocks. The

0 commit comments

Comments
 (0)