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

Commit 4a6a3ba

Browse files
committedFeb 21, 2014
docs(*): fix anchors for members in api docs
1 parent 0c9abc3 commit 4a6a3ba

29 files changed

+181
-181
lines changed
 

‎docs/content/api/index.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ or JavaScript callbacks.
156156
{@link ngAnimate JS-based animations}
157157
</td>
158158
<td>
159-
Use {@link angular.Module#methods_animation module.animation()} to register a JavaScript animation. Once registered the animation can be triggered by referencing the CSS class within the HTML template code.
159+
Use {@link angular.Module#animation module.animation()} to register a JavaScript animation. Once registered the animation can be triggered by referencing the CSS class within the HTML template code.
160160
</td>
161161
</tr>
162162
</table>

‎docs/content/error/$injector/pget.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ angular.module("myApp", [])
2222
.provider('good', GoodProvider);
2323
```
2424

25-
For more information, refer to the {@link auto.$provide#methods_provider
25+
For more information, refer to the {@link auto.$provide#provider
2626
$provide.provider} api doc.

‎docs/content/error/$sce/icontext.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
@fullName Invalid / Unknown SCE context
44
@description
55

6-
The context enum passed to {@link ng.$sce#methods_trustAs $sce.trustAs} was not recognized.
6+
The context enum passed to {@link ng.$sce#trustAs $sce.trustAs} was not recognized.
77

88
Please consult the list of {@link ng.$sce#contexts supported Strict Contextual Escaping (SCE) contexts}.

‎docs/content/error/$sce/imatcher.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@fullName Invalid matcher (only string patterns and RegExp instances are supported)
44
@description
55

6-
Please see {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist
6+
Please see {@link ng.$sceDelegateProvider#resourceUrlWhitelist
77
$sceDelegateProvider.resourceUrlWhitelist} and {@link
8-
api/ng.$sceDelegateProvider#methods_resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} for the
8+
api/ng.$sceDelegateProvider#resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} for the
99
list of acceptable items.

‎docs/content/error/$sce/insecurl.ngdoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ AngularJS' {@link ng.$sce Strict Contextual Escaping (SCE)} mode (enabled by def
88
Typically, this would occur if you're attempting to load an Angular template from an untrusted source.
99
It's also possible that a custom directive threw this error for a similar reason.
1010

11-
Angular only loads templates from trusted URLs (by calling {@link ng.$sce#methods_getTrustedResourceUrl $sce.getTrustedResourceUrl} on the template URL).
11+
Angular only loads templates from trusted URLs (by calling {@link ng.$sce#getTrustedResourceUrl $sce.getTrustedResourceUrl} on the template URL).
1212

1313
By default, only URLs that belong to the same origin are trusted. These are urls with the same domain and protocol as the application document.
1414

1515
The {@link ng.directive:ngInclude ngInclude} directive and {@link guide/directive directives} that specify a `templateUrl` require a trusted resource URL.
1616

1717
To load templates from other domains and/or protocols, either adjust the {@link
18-
api/ng.$sceDelegateProvider#methods_resourceUrlWhitelist whitelist}/ {@link
19-
api/ng.$sceDelegateProvider#methods_resourceUrlBlacklist blacklist} or wrap the URL with a call to {@link
20-
api/ng.$sce#methods_trustAsResourceUrl $sce.trustAsResourceUrl}.
18+
api/ng.$sceDelegateProvider#resourceUrlWhitelist whitelist}/ {@link
19+
api/ng.$sceDelegateProvider#resourceUrlBlacklist blacklist} or wrap the URL with a call to {@link
20+
api/ng.$sce#trustAsResourceUrl $sce.trustAsResourceUrl}.
2121

2222
**Note**: The browser's [Same Origin
2323
Policy](https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest) and

‎docs/content/error/$sce/itype.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
@fullName String Value is Required for SCE Trust Call
44
@description
55

6-
{@link ng.$sce#methods_trustAs $sce.trustAs} requires a string value.
6+
{@link ng.$sce#trustAs $sce.trustAs} requires a string value.
77

88
Read more about {@link ng.$sce Strict Contextual Escaping (SCE)} in AngularJS.

‎docs/content/error/$sce/iwcard.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@fullName The sequence *** is not a valid pattern wildcard
44
@description
55

6-
The strings in {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist
6+
The strings in {@link ng.$sceDelegateProvider#resourceUrlWhitelist
77
$sceDelegateProvider.resourceUrlWhitelist} and {@link
8-
api/ng.$sceDelegateProvider#methods_resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} may not
8+
api/ng.$sceDelegateProvider#resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist} may not
99
contain the undefined sequence `***`. Only `*` and `**` wildcard patterns are defined.

‎docs/content/guide/compiler.ngdoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you want a deeper look into Angular's compilation process, you're in the righ
1616
Angular's {@link ng.$compile HTML compiler} allows the developer to teach the
1717
browser new HTML syntax. The compiler allows you to attach behavior to any HTML element or attribute
1818
and even create new HTML elements or attributes with custom behavior. Angular calls these behavior
19-
extensions {@link ng.$compileProvider#methods_directive directives}.
19+
extensions {@link ng.$compileProvider#directive directives}.
2020

2121
HTML has a lot of constructs for formatting the HTML for static documents in a declarative fashion.
2222
For example if something needs to be centered, there is no need to provide instructions to the
@@ -68,7 +68,7 @@ ng.directive:ngBind `ng-bind`} directive.
6868
```
6969

7070
A directive is just a function which executes when the compiler encounters it in the DOM. See {@link
71-
ng.$compileProvider#methods_directive directive API} for in-depth documentation on how
71+
ng.$compileProvider#directive directive API} for in-depth documentation on how
7272
to write directives.
7373

7474
Here is a directive which makes any element draggable. Notice the `draggable` attribute on the
@@ -174,7 +174,7 @@ HTML compilation happens in three phases:
174174

175175
3. `$compile` links the template with the scope by calling the combined linking function from the previous step.
176176
This in turn will call the linking function of the individual directives, registering listeners on the elements
177-
and setting up {@link ng.$rootScope.Scope#methods_$watch `$watch`s} with the {@link ng.$rootScope.Scope `scope`}
177+
and setting up {@link ng.$rootScope.Scope#$watch `$watch`s} with the {@link ng.$rootScope.Scope `scope`}
178178
as each directive is configured to do.
179179

180180
The result of this is a live binding between the scope and the DOM. So at this point, a change in

‎docs/content/guide/directive.ngdoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ directives when possible.
131131

132132
During the compilation process the {@link ng.$compile compiler} matches text and attributes
133133
using the {@link ng.$interpolate $interpolate} service to see if they contain embedded
134-
expressions. These expressions are registered as {@link ng.$rootScope.Scope#methods_$watch watches}
135-
and will update as part of normal {@link ng.$rootScope.Scope#methods_$digest digest} cycle. An
134+
expressions. These expressions are registered as {@link ng.$rootScope.Scope#$watch watches}
135+
and will update as part of normal {@link ng.$rootScope.Scope#$digest digest} cycle. An
136136
example of interpolation is shown below:
137137

138138
```html
@@ -174,7 +174,7 @@ For example, we could fix the example above by instead writing:
174174

175175
## Creating Directives
176176

177-
First let's talk about the {@link ng.$compileProvider#methods_directive API for registering directives}. Much like
177+
First let's talk about the {@link ng.$compileProvider#directive API for registering directives}. Much like
178178
controllers, directives are registered on modules. To register a directive, you use the
179179
`module.directive` API. `module.directive` takes the
180180
{@link guide/directive#creating-custom-directives_matching-directives normalized} directive name
@@ -185,7 +185,7 @@ options to tell `$compile` how the directive should behave when matched.
185185
The factory function is invoked only once when the
186186
{@link ng.$compile compiler} matches the directive for the first time. You can perform any
187187
initialization work here. The function is invoked using
188-
{@link auto.$injector#methods_invoke $injector.invoke} which makes it injectable just like a
188+
{@link auto.$injector#invoke $injector.invoke} which makes it injectable just like a
189189
controller.
190190

191191
<div class="alert alert-success">

‎docs/content/guide/expression.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You can think of Angular expressions as JavaScript expressions with following di
3030

3131
If, on the other hand, you do want to run arbitrary JavaScript code, you should make it a
3232
controller method and call the method. If you want to `eval()` an angular expression from
33-
JavaScript, use the {@link ng.$rootScope.Scope#methods_$eval `$eval()`} method.
33+
JavaScript, use the {@link ng.$rootScope.Scope#$eval `$eval()`} method.
3434

3535
## Example
3636
<example>

‎docs/content/guide/forms.ngdoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,11 @@ To get a hold of the controller the directive specifies a dependency as shown in
191191
The validation can occur in two places:
192192

193193
* **Model to View update** -
194-
Whenever the bound model changes, all functions in {@link ngModel.NgModelController#properties_$formatters NgModelController#$formatters} array are pipe-lined, so that each of these functions has an opportunity to format the value and change validity state of the form control through {@link ngModel.NgModelController#methods_$setValidity NgModelController#$setValidity}.
194+
Whenever the bound model changes, all functions in {@link ngModel.NgModelController#properties_$formatters NgModelController#$formatters} array are pipe-lined, so that each of these functions has an opportunity to format the value and change validity state of the form control through {@link ngModel.NgModelController#$setValidity NgModelController#$setValidity}.
195195

196196
* **View to Model update** -
197-
In a similar way, whenever a user interacts with a control it calls {@link ngModel.NgModelController#methods_$setViewValue NgModelController#$setViewValue}.
198-
This in turn pipelines all functions in the {@link ngModel.NgModelController#properties_$parsers NgModelController#$parsers} array, so that each of these functions has an opportunity to convert the value and change validity state of the form control through {@link ngModel.NgModelController#methods_$setValidity NgModelController#$setValidity}.
197+
In a similar way, whenever a user interacts with a control it calls {@link ngModel.NgModelController#$setViewValue NgModelController#$setViewValue}.
198+
This in turn pipelines all functions in the {@link ngModel.NgModelController#properties_$parsers NgModelController#$parsers} array, so that each of these functions has an opportunity to convert the value and change validity state of the form control through {@link ngModel.NgModelController#$setValidity NgModelController#$setValidity}.
199199

200200
In the following example we create two directives.
201201

‎docs/content/guide/migration.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ See [05772e15](https://github.com/angular/angular.js/commit/05772e15fbecfdc63d49
361361

362362
## $location.search supports multiple keys
363363

364-
{@link ng.$location#methods_search `$location.search`} now supports multiple keys with the
364+
{@link ng.$location#search `$location.search`} now supports multiple keys with the
365365
same value provided that the values are stored in an array.
366366

367367
Before this change:

‎docs/content/guide/scope.ngdoc

+33-33
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ watch {@link guide/expression expressions} and propagate events.
1111

1212
## Scope characteristics
1313

14-
- Scopes provide APIs ({@link ng.$rootScope.Scope#methods_$watch $watch}) to observe
14+
- Scopes provide APIs ({@link ng.$rootScope.Scope#$watch $watch}) to observe
1515
model mutations.
1616

17-
- Scopes provide APIs ({@link ng.$rootScope.Scope#methods_$apply $apply}) to
17+
- Scopes provide APIs ({@link ng.$rootScope.Scope#$apply $apply}) to
1818
propagate any model changes through the system into the view from outside of the "Angular
1919
realm" (controllers, services, Angular event handlers).
2020

@@ -32,8 +32,8 @@ watch {@link guide/expression expressions} and propagate events.
3232
## Scope as Data-Model
3333

3434
Scope is the glue between application controller and the view. During the template {@link compiler
35-
linking} phase the {@link ng.$compileProvider#methods_directive directives} set up
36-
{@link ng.$rootScope.Scope#methods_$watch `$watch`} expressions on the scope. The
35+
linking} phase the {@link ng.$compileProvider#directive directives} set up
36+
{@link ng.$rootScope.Scope#$watch `$watch`} expressions on the scope. The
3737
`$watch` allows the directives to be notified of property changes, which allows the directive to
3838
render the updated value to the DOM.
3939

@@ -187,8 +187,8 @@ To examine the scope in the debugger:
187187
## Scope Events Propagation
188188

189189
Scopes can propagate events in similar fashion to DOM events. The event can be {@link
190-
ng.$rootScope.Scope#methods_$broadcast broadcasted} to the scope children or {@link
191-
ng.$rootScope.Scope#methods_$emit emitted} to scope parents.
190+
ng.$rootScope.Scope#$broadcast broadcasted} to the scope children or {@link
191+
ng.$rootScope.Scope#$emit emitted} to scope parents.
192192

193193
<example>
194194
<file name="script.js">
@@ -230,14 +230,14 @@ more events.
230230
When the browser calls into JavaScript the code executes outside the Angular execution context,
231231
which means that Angular is unaware of model modifications. To properly process model
232232
modifications the execution has to enter the Angular execution context using the {@link
233-
ng.$rootScope.Scope#methods_$apply `$apply`} method. Only model modifications which
233+
ng.$rootScope.Scope#$apply `$apply`} method. Only model modifications which
234234
execute inside the `$apply` method will be properly accounted for by Angular. For example if a
235235
directive listens on DOM events, such as {@link
236236
ng.directive:ngClick `ng-click`} it must evaluate the
237237
expression inside the `$apply` method.
238238

239239
After evaluating the expression, the `$apply` method performs a {@link
240-
ng.$rootScope.Scope#methods_$digest `$digest`}. In the $digest phase the scope examines all
240+
ng.$rootScope.Scope#$digest `$digest`}. In the $digest phase the scope examines all
241241
of the `$watch` expressions and compares them with the previous value. This dirty checking is done
242242
asynchronously. This means that assignment such as `$scope.username="angular"` will not
243243
immediately cause a `$watch` to be notified, instead the `$watch` notification is delayed until
@@ -255,56 +255,56 @@ the `$digest` phase. This delay is desirable, since it coalesces multiple model
255255
2. **Watcher registration**
256256

257257
During template linking directives register {@link
258-
ng.$rootScope.Scope#methods_$watch watches} on the scope. These watches will be
258+
ng.$rootScope.Scope#$watch watches} on the scope. These watches will be
259259
used to propagate model values to the DOM.
260260

261261
3. **Model mutation**
262262

263263
For mutations to be properly observed, you should make them only within the {@link
264-
ng.$rootScope.Scope#methods_$apply scope.$apply()}. (Angular APIs do this
264+
ng.$rootScope.Scope#$apply scope.$apply()}. (Angular APIs do this
265265
implicitly, so no extra `$apply` call is needed when doing synchronous work in controllers,
266266
or asynchronous work with {@link ng.$http $http}, {@link ng.$timeout $timeout}
267267
or {@link ng.$interval $interval} services.
268268

269269
4. **Mutation observation**
270270

271-
At the end `$apply`, Angular performs a {@link ng.$rootScope.Scope#methods_$digest
271+
At the end `$apply`, Angular performs a {@link ng.$rootScope.Scope#$digest
272272
$digest} cycle on the root scope, which then propagates throughout all child scopes. During
273273
the `$digest` cycle, all `$watch`ed expressions or functions are checked for model mutation
274274
and if a mutation is detected, the `$watch` listener is called.
275275

276276
5. **Scope destruction**
277277

278278
When child scopes are no longer needed, it is the responsibility of the child scope creator
279-
to destroy them via {@link ng.$rootScope.Scope#methods_$destroy scope.$destroy()}
279+
to destroy them via {@link ng.$rootScope.Scope#$destroy scope.$destroy()}
280280
API. This will stop propagation of `$digest` calls into the child scope and allow for memory
281281
used by the child scope models to be reclaimed by the garbage collector.
282282

283283

284284
### Scopes and Directives
285285

286286
During the compilation phase, the {@link compiler compiler} matches {@link
287-
ng.$compileProvider#methods_directive directives} against the DOM template. The directives
287+
ng.$compileProvider#directive directives} against the DOM template. The directives
288288
usually fall into one of two categories:
289289

290-
- Observing {@link ng.$compileProvider#methods_directive directives}, such as
290+
- Observing {@link ng.$compileProvider#directive directives}, such as
291291
double-curly expressions `{{expression}}`, register listeners using the {@link
292-
ng.$rootScope.Scope#methods_$watch $watch()} method. This type of directive needs
292+
ng.$rootScope.Scope#$watch $watch()} method. This type of directive needs
293293
to be notified whenever the expression changes so that it can update the view.
294294

295295
- Listener directives, such as {@link ng.directive:ngClick
296296
ng-click}, register a listener with the DOM. When the DOM listener fires, the directive
297297
executes the associated expression and updates the view using the {@link
298-
ng.$rootScope.Scope#methods_$apply $apply()} method.
298+
ng.$rootScope.Scope#$apply $apply()} method.
299299

300300
When an external event (such as a user action, timer or XHR) is received, the associated {@link
301301
expression expression} must be applied to the scope through the {@link
302-
ng.$rootScope.Scope#methods_$apply $apply()} method so that all listeners are updated
302+
ng.$rootScope.Scope#$apply $apply()} method so that all listeners are updated
303303
correctly.
304304

305305
### Directives that Create Scopes
306306

307-
In most cases, {@link ng.$compileProvider#methods_directive directives} and scopes interact
307+
In most cases, {@link ng.$compileProvider#directive directives} and scopes interact
308308
but do not create new instances of scope. However, some directives, such as {@link
309309
ng.directive:ngController ng-controller} and {@link
310310
ng.directive:ngRepeat ng-repeat}, create new child scopes
@@ -322,7 +322,7 @@ Scopes and controllers interact with each other in the following situations:
322322

323323
- Controllers define methods (behavior) that can mutate the model (properties on the scope).
324324

325-
- Controllers may register {@link ng.$rootScope.Scope#methods_$watch watches} on
325+
- Controllers may register {@link ng.$rootScope.Scope#$watch watches} on
326326
the model. These watches execute immediately after the controller behavior executes.
327327

328328
See the {@link ng.directive:ngController ng-controller} for more
@@ -357,26 +357,26 @@ directive which is handling the event. An explicit call to $apply is needed only
357357
implementing custom event callbacks, or when working with third-party library callbacks.
358358

359359
1. Enter Angular execution context by calling {@link guide/scope scope}`.`{@link
360-
ng.$rootScope.Scope#methods_$apply $apply}`(stimulusFn)`. Where `stimulusFn` is
360+
ng.$rootScope.Scope#$apply $apply}`(stimulusFn)`. Where `stimulusFn` is
361361
the work you wish to do in Angular execution context.
362362
2. Angular executes the `stimulusFn()`, which typically modifies application state.
363-
3. Angular enters the {@link ng.$rootScope.Scope#methods_$digest $digest} loop. The
363+
3. Angular enters the {@link ng.$rootScope.Scope#$digest $digest} loop. The
364364
loop is made up of two smaller loops which process {@link
365-
ng.$rootScope.Scope#methods_$evalAsync $evalAsync} queue and the {@link
366-
ng.$rootScope.Scope#methods_$watch $watch} list. The {@link
367-
ng.$rootScope.Scope#methods_$digest $digest} loop keeps iterating until the model
368-
stabilizes, which means that the {@link ng.$rootScope.Scope#methods_$evalAsync
369-
$evalAsync} queue is empty and the {@link ng.$rootScope.Scope#methods_$watch
365+
ng.$rootScope.Scope#$evalAsync $evalAsync} queue and the {@link
366+
ng.$rootScope.Scope#$watch $watch} list. The {@link
367+
ng.$rootScope.Scope#$digest $digest} loop keeps iterating until the model
368+
stabilizes, which means that the {@link ng.$rootScope.Scope#$evalAsync
369+
$evalAsync} queue is empty and the {@link ng.$rootScope.Scope#$watch
370370
$watch} list does not detect any changes.
371-
4. The {@link ng.$rootScope.Scope#methods_$evalAsync $evalAsync} queue is used to
371+
4. The {@link ng.$rootScope.Scope#$evalAsync $evalAsync} queue is used to
372372
schedule work which needs to occur outside of current stack frame, but before the browser's
373373
view render. This is usually done with `setTimeout(0)`, but the `setTimeout(0)` approach
374374
suffers from slowness and may cause view flickering since the browser renders the view after
375375
each event.
376-
5. The {@link ng.$rootScope.Scope#methods_$watch $watch} list is a set of expressions
376+
5. The {@link ng.$rootScope.Scope#$watch $watch} list is a set of expressions
377377
which may have changed since last iteration. If a change is detected then the `$watch`
378378
function is called which typically updates the DOM with the new value.
379-
6. Once the Angular {@link ng.$rootScope.Scope#methods_$digest $digest} loop finishes
379+
6. Once the Angular {@link ng.$rootScope.Scope#$digest $digest} loop finishes
380380
the execution leaves the Angular and JavaScript context. This is followed by the browser
381381
re-rendering the DOM to reflect any changes.
382382

@@ -389,17 +389,17 @@ user enters text into the text field.
389389
ng.directive:input input} {@link guide/directive
390390
directive} set up a `keydown` listener on the `<input>` control.
391391
2. the {@link ng.$interpolate &#123;&#123;name&#125;&#125; } interpolation
392-
sets up a {@link ng.$rootScope.Scope#methods_$watch $watch} to be notified of
392+
sets up a {@link ng.$rootScope.Scope#$watch $watch} to be notified of
393393
`name` changes.
394394
2. During the runtime phase:
395395
1. Pressing an '`X`' key causes the browser to emit a `keydown` event on the input control.
396396
2. The {@link ng.directive:input input} directive
397397
captures the change to the input's value and calls {@link
398-
ng.$rootScope.Scope#methods_$apply $apply}`("name = 'X';")` to update the
398+
ng.$rootScope.Scope#$apply $apply}`("name = 'X';")` to update the
399399
application model inside the Angular execution context.
400400
3. Angular applies the `name = 'X';` to the model.
401-
4. The {@link ng.$rootScope.Scope#methods_$digest $digest} loop begins
402-
5. The {@link ng.$rootScope.Scope#methods_$watch $watch} list detects a change
401+
4. The {@link ng.$rootScope.Scope#$digest $digest} loop begins
402+
5. The {@link ng.$rootScope.Scope#$watch $watch} list detects a change
403403
on the `name` property and notifies the {@link ng.$interpolate
404404
&#123;&#123;name&#125;&#125; } interpolation, which in turn updates the DOM.
405405
6. Angular exits the execution context, which in turn exits the `keydown` event and with it

‎src/auto/injector.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -308,16 +308,16 @@ function annotate(fn) {
308308
* these cases the {@link auto.$provide $provide} service has additional helper methods to register
309309
* services without specifying a provider.
310310
*
311-
* * {@link auto.$provide#methods_provider provider(provider)} - registers a **service provider** with the
311+
* * {@link auto.$provide#provider provider(provider)} - registers a **service provider** with the
312312
* {@link auto.$injector $injector}
313-
* * {@link auto.$provide#methods_constant constant(obj)} - registers a value/object that can be accessed by
313+
* * {@link auto.$provide#constant constant(obj)} - registers a value/object that can be accessed by
314314
* providers and services.
315-
* * {@link auto.$provide#methods_value value(obj)} - registers a value/object that can only be accessed by
315+
* * {@link auto.$provide#value value(obj)} - registers a value/object that can only be accessed by
316316
* services, not providers.
317-
* * {@link auto.$provide#methods_factory factory(fn)} - registers a service **factory function**, `fn`,
317+
* * {@link auto.$provide#factory factory(fn)} - registers a service **factory function**, `fn`,
318318
* that will be wrapped in a **service provider** object, whose `$get` property will contain the
319319
* given factory function.
320-
* * {@link auto.$provide#methods_service service(class)} - registers a **constructor function**, `class` that
320+
* * {@link auto.$provide#service service(class)} - registers a **constructor function**, `class` that
321321
* that will be wrapped in a **service provider** object, whose `$get` property will instantiate
322322
* a new object using the given constructor function.
323323
*
@@ -358,7 +358,7 @@ function annotate(fn) {
358358
* @example
359359
*
360360
* The following example shows how to create a simple event tracking service and register it using
361-
* {@link auto.$provide#methods_provider $provide.provider()}.
361+
* {@link auto.$provide#provider $provide.provider()}.
362362
*
363363
* ```js
364364
* // Define the eventTracker provider
@@ -464,7 +464,7 @@ function annotate(fn) {
464464
* This is short for registering a service where its provider's `$get` property is the service
465465
* constructor function that will be used to instantiate the service instance.
466466
*
467-
* You should use {@link auto.$provide#methods_service $provide.service(class)} if you define your service
467+
* You should use {@link auto.$provide#service $provide.service(class)} if you define your service
468468
* as a type/class.
469469
*
470470
* @param {string} name The name of the instance.
@@ -473,7 +473,7 @@ function annotate(fn) {
473473
*
474474
* @example
475475
* Here is an example of registering a service using
476-
* {@link auto.$provide#methods_service $provide.service(class)}.
476+
* {@link auto.$provide#service $provide.service(class)}.
477477
* ```js
478478
* var Ping = function($http) {
479479
* this.$http = $http;

‎src/loader.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function setupModuleLoader(window) {
7575
* @param {Array.<string>=} requires If specified then new module is being created. If
7676
* unspecified then the the module is being retrieved for further configuration.
7777
* @param {Function} configFn Optional configuration function for the module. Same as
78-
* {@link angular.Module#methods_config Module#config()}.
78+
* {@link angular.Module#config Module#config()}.
7979
* @returns {module} new module with the {@link angular.Module} api.
8080
*/
8181
return function module(name, requires, configFn) {
@@ -256,7 +256,7 @@ function setupModuleLoader(window) {
256256
* @param {Function} directiveFactory Factory function for creating new instance of
257257
* directives.
258258
* @description
259-
* See {@link ng.$compileProvider#methods_directive $compileProvider.directive()}.
259+
* See {@link ng.$compileProvider#directive $compileProvider.directive()}.
260260
*/
261261
directive: invokeLater('$compileProvider', 'directive'),
262262

‎src/ng/compile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* can then be used to link {@link ng.$rootScope.Scope `scope`} and the template together.
2929
*
3030
* The compilation is a process of walking the DOM tree and matching DOM elements to
31-
* {@link ng.$compileProvider#methods_directive directives}.
31+
* {@link ng.$compileProvider#directive directives}.
3232
*
3333
* <div class="alert alert-warning">
3434
* **Note:** This document is an in-depth reference of all directive options.
@@ -231,7 +231,7 @@
231231
* You can specify `templateUrl` as a string representing the URL or as a function which takes two
232232
* arguments `tElement` and `tAttrs` (described in the `compile` function api below) and returns
233233
* a string value representing the url. In either case, the template URL is passed through {@link
234-
* api/ng.$sce#methods_getTrustedResourceUrl $sce.getTrustedResourceUrl}.
234+
* api/ng.$sce#getTrustedResourceUrl $sce.getTrustedResourceUrl}.
235235
*
236236
*
237237
* #### `replace`
@@ -310,7 +310,7 @@
310310
* put.
311311
*
312312
* * `scope` - {@link ng.$rootScope.Scope Scope} - The scope to be used by the
313-
* directive for registering {@link ng.$rootScope.Scope#methods_$watch watches}.
313+
* directive for registering {@link ng.$rootScope.Scope#$watch watches}.
314314
*
315315
* * `iElement` - instance element - The element where the directive is to be used. It is safe to
316316
* manipulate the children of the element only in `postLink` function since the children have

‎src/ng/controller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* controllers.
99
*
1010
* This provider allows controller registration via the
11-
* {@link ng.$controllerProvider#methods_register register} method.
11+
* {@link ng.$controllerProvider#register register} method.
1212
*/
1313
function $ControllerProvider() {
1414
var controllers = {},

‎src/ng/directive/ngBind.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var ngBindTemplateDirective = ['$interpolate', function($interpolate) {
133133
* ngSanitize.$sanitize $sanitize} service. To utilize this functionality, ensure that `$sanitize`
134134
* is available, for example, by including {@link ngSanitize} in your module's dependencies (not in
135135
* core Angular.) You may also bypass sanitization for values you know are safe. To do so, bind to
136-
* an explicitly trusted value via {@link ng.$sce#methods_trustAsHtml $sce.trustAsHtml}. See the example
136+
* an explicitly trusted value via {@link ng.$sce#trustAsHtml $sce.trustAsHtml}. See the example
137137
* under {@link ng.$sce#Example Strict Contextual Escaping (SCE)}.
138138
*
139139
* Note: If a `$sanitize` service is unavailable and the bound value isn't explicitly trusted, you

‎src/ng/directive/ngClass.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ function classDirective(name, selector) {
203203
The ngClass directive still supports CSS3 Transitions/Animations even if they do not follow the ngAnimate CSS naming structure.
204204
Upon animation ngAnimate will apply supplementary CSS classes to track the start and end of an animation, but this will not hinder
205205
any pre-existing CSS transitions already on the element. To get an idea of what happens during a class-based animation, be sure
206-
to view the step by step details of {@link ngAnimate.$animate#methods_addclass $animate.addClass} and
207-
{@link ngAnimate.$animate#methods_removeclass $animate.removeClass}.
206+
to view the step by step details of {@link ngAnimate.$animate#addclass $animate.addClass} and
207+
{@link ngAnimate.$animate#removeclass $animate.removeClass}.
208208
*/
209209
var ngClassDirective = classDirective('', true);
210210

‎src/ng/directive/ngInclude.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
* Fetches, compiles and includes an external HTML fragment.
1010
*
1111
* By default, the template URL is restricted to the same domain and protocol as the
12-
* application document. This is done by calling {@link ng.$sce#methods_getTrustedResourceUrl
12+
* application document. This is done by calling {@link ng.$sce#getTrustedResourceUrl
1313
* $sce.getTrustedResourceUrl} on it. To load templates from other domains or protocols
14-
* you may either {@link ng.$sceDelegateProvider#methods_resourceUrlWhitelist whitelist them} or
15-
* [wrap them](ng.$sce#methods_trustAsResourceUrl) as trusted values. Refer to Angular's {@link
14+
* you may either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist them} or
15+
* [wrap them](ng.$sce#trustAsResourceUrl) as trusted values. Refer to Angular's {@link
1616
* ng.$sce Strict Contextual Escaping}.
1717
*
1818
* In addition, the browser's

‎src/ng/http.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ function $HttpProvider() {
225225
*
226226
* # Writing Unit Tests that use $http
227227
* When unit testing (using {@link ngMock ngMock}), it is necessary to call
228-
* {@link ngMock.$httpBackend#methods_flush $httpBackend.flush()} to flush each pending
228+
* {@link ngMock.$httpBackend#flush $httpBackend.flush()} to flush each pending
229229
* request using trained responses.
230230
*
231231
* ```
@@ -247,12 +247,12 @@ function $HttpProvider() {
247247
*
248248
* Complete list of shortcut methods:
249249
*
250-
* - {@link ng.$http#methods_get $http.get}
251-
* - {@link ng.$http#methods_head $http.head}
252-
* - {@link ng.$http#methods_post $http.post}
253-
* - {@link ng.$http#methods_put $http.put}
254-
* - {@link ng.$http#methods_delete $http.delete}
255-
* - {@link ng.$http#methods_jsonp $http.jsonp}
250+
* - {@link ng.$http#get $http.get}
251+
* - {@link ng.$http#head $http.head}
252+
* - {@link ng.$http#post $http.post}
253+
* - {@link ng.$http#put $http.put}
254+
* - {@link ng.$http#delete $http.delete}
255+
* - {@link ng.$http#jsonp $http.jsonp}
256256
*
257257
*
258258
* # Setting HTTP Headers

‎src/ng/interpolate.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function $InterpolateProvider() {
111111
* embedded expression in order to return an interpolation function. Strings with no
112112
* embedded expression will return null for the interpolation function.
113113
* @param {string=} trustedContext when provided, the returned function passes the interpolated
114-
* result through {@link ng.$sce#methods_getTrusted $sce.getTrusted(interpolatedResult,
114+
* result through {@link ng.$sce#getTrusted $sce.getTrusted(interpolatedResult,
115115
* trustedContext)} before returning it. Refer to the {@link ng.$sce $sce} service that
116116
* provides Strict Contextual Escaping for details.
117117
* @returns {function(context)} an interpolation function which is used to compute the
@@ -223,7 +223,7 @@ function $InterpolateProvider() {
223223
* @description
224224
* Symbol to denote the end of expression in the interpolated string. Defaults to `}}`.
225225
*
226-
* Use {@link ng.$interpolateProvider#methods_endSymbol $interpolateProvider#endSymbol} to change
226+
* Use {@link ng.$interpolateProvider#endSymbol $interpolateProvider#endSymbol} to change
227227
* the symbol.
228228
*
229229
* @returns {string} end symbol.

‎src/ng/interval.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function $IntervalProvider() {
2121
* number of iterations that have run.
2222
* To cancel an interval, call `$interval.cancel(promise)`.
2323
*
24-
* In tests you can use {@link ngMock.$interval#methods_flush `$interval.flush(millis)`} to
24+
* In tests you can use {@link ngMock.$interval#flush `$interval.flush(millis)`} to
2525
* move forward by `millis` milliseconds and trigger any functions scheduled to run in that
2626
* time.
2727
*
@@ -38,7 +38,7 @@ function $IntervalProvider() {
3838
* @param {number=} [count=0] Number of times to repeat. If not set, or 0, will repeat
3939
* indefinitely.
4040
* @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise
41-
* will invoke `fn` within the {@link ng.$rootScope.Scope#methods_$apply $apply} block.
41+
* will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block.
4242
* @returns {promise} A promise which will be notified on each iteration.
4343
*
4444
* @example

‎src/ng/location.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ function $LocationProvider(){
560560
* @eventType broadcast on root scope
561561
* @description
562562
* Broadcasted before a URL will change. This change can be prevented by calling
563-
* `preventDefault` method of the event. See {@link ng.$rootScope.Scope#methods_$on} for more
563+
* `preventDefault` method of the event. See {@link ng.$rootScope.Scope#$on} for more
564564
* details about event object. Upon successful change
565565
* {@link ng.$location#events_$locationChangeSuccess $locationChangeSuccess} is fired.
566566
*

‎src/ng/rootScope.js

+35-35
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function $RootScopeProvider(){
8989
* @description
9090
* A root scope can be retrieved using the {@link ng.$rootScope $rootScope} key from the
9191
* {@link auto.$injector $injector}. Child scopes are created using the
92-
* {@link ng.$rootScope.Scope#methods_$new $new()} method. (Most scopes are created automatically when
92+
* {@link ng.$rootScope.Scope#$new $new()} method. (Most scopes are created automatically when
9393
* compiled HTML template is executed.)
9494
*
9595
* Here is a simple scope snippet to show how you can interact with the scope.
@@ -155,11 +155,11 @@ function $RootScopeProvider(){
155155
* @description
156156
* Creates a new child {@link ng.$rootScope.Scope scope}.
157157
*
158-
* The parent scope will propagate the {@link ng.$rootScope.Scope#methods_$digest $digest()} and
159-
* {@link ng.$rootScope.Scope#methods_$digest $digest()} events. The scope can be removed from the
160-
* scope hierarchy using {@link ng.$rootScope.Scope#methods_$destroy $destroy()}.
158+
* The parent scope will propagate the {@link ng.$rootScope.Scope#$digest $digest()} and
159+
* {@link ng.$rootScope.Scope#$digest $digest()} events. The scope can be removed from the
160+
* scope hierarchy using {@link ng.$rootScope.Scope#$destroy $destroy()}.
161161
*
162-
* {@link ng.$rootScope.Scope#methods_$destroy $destroy()} must be called on a scope when it is
162+
* {@link ng.$rootScope.Scope#$destroy $destroy()} must be called on a scope when it is
163163
* desired for the scope and its child scopes to be permanently detached from the parent and
164164
* thus stop participating in model change detection and listener notification by invoking.
165165
*
@@ -212,11 +212,11 @@ function $RootScopeProvider(){
212212
* @description
213213
* Registers a `listener` callback to be executed whenever the `watchExpression` changes.
214214
*
215-
* - The `watchExpression` is called on every call to {@link ng.$rootScope.Scope#methods_$digest
215+
* - The `watchExpression` is called on every call to {@link ng.$rootScope.Scope#$digest
216216
* $digest()} and should return the value that will be watched. (Since
217-
* {@link ng.$rootScope.Scope#methods_$digest $digest()} reruns when it detects changes the
217+
* {@link ng.$rootScope.Scope#$digest $digest()} reruns when it detects changes the
218218
* `watchExpression` can execute multiple times per
219-
* {@link ng.$rootScope.Scope#methods_$digest $digest()} and should be idempotent.)
219+
* {@link ng.$rootScope.Scope#$digest $digest()} and should be idempotent.)
220220
* - The `listener` is called only when the value from the current `watchExpression` and the
221221
* previous call to `watchExpression` are not equal (with the exception of the initial run,
222222
* see below). The inequality is determined according to
@@ -228,13 +228,13 @@ function $RootScopeProvider(){
228228
* iteration limit is 10 to prevent an infinite loop deadlock.
229229
*
230230
*
231-
* If you want to be notified whenever {@link ng.$rootScope.Scope#methods_$digest $digest} is called,
231+
* If you want to be notified whenever {@link ng.$rootScope.Scope#$digest $digest} is called,
232232
* you can register a `watchExpression` function with no `listener`. (Since `watchExpression`
233-
* can execute multiple times per {@link ng.$rootScope.Scope#methods_$digest $digest} cycle when a
233+
* can execute multiple times per {@link ng.$rootScope.Scope#$digest $digest} cycle when a
234234
* change is detected, be prepared for multiple calls to your listener.)
235235
*
236236
* After a watcher is registered with the scope, the `listener` fn is called asynchronously
237-
* (via {@link ng.$rootScope.Scope#methods_$evalAsync $evalAsync}) to initialize the
237+
* (via {@link ng.$rootScope.Scope#$evalAsync $evalAsync}) to initialize the
238238
* watcher. In rare cases, this is undesirable because the listener is called when the result
239239
* of `watchExpression` didn't change. To detect this scenario within the `listener` fn, you
240240
* can compare the `newVal` and `oldVal`. If these two values are identical (`===`) then the
@@ -298,7 +298,7 @@ function $RootScopeProvider(){
298298
*
299299
*
300300
* @param {(function()|string)} watchExpression Expression that is evaluated on each
301-
* {@link ng.$rootScope.Scope#methods_$digest $digest} cycle. A change in the return value triggers
301+
* {@link ng.$rootScope.Scope#$digest $digest} cycle. A change in the return value triggers
302302
* a call to the `listener`.
303303
*
304304
* - `string`: Evaluated as {@link guide/expression expression}
@@ -396,7 +396,7 @@ function $RootScopeProvider(){
396396
*
397397
* @param {string|Function(scope)} obj Evaluated as {@link guide/expression expression}. The
398398
* expression value should evaluate to an object or an array which is observed on each
399-
* {@link ng.$rootScope.Scope#methods_$digest $digest} cycle. Any shallow change within the
399+
* {@link ng.$rootScope.Scope#$digest $digest} cycle. Any shallow change within the
400400
* collection will trigger a call to the `listener`.
401401
*
402402
* @param {function(newCollection, oldCollection, scope)} listener a callback function that is
@@ -500,22 +500,22 @@ function $RootScopeProvider(){
500500
* @function
501501
*
502502
* @description
503-
* Processes all of the {@link ng.$rootScope.Scope#methods_$watch watchers} of the current scope and
504-
* its children. Because a {@link ng.$rootScope.Scope#methods_$watch watcher}'s listener can change
505-
* the model, the `$digest()` keeps calling the {@link ng.$rootScope.Scope#methods_$watch watchers}
503+
* Processes all of the {@link ng.$rootScope.Scope#$watch watchers} of the current scope and
504+
* its children. Because a {@link ng.$rootScope.Scope#$watch watcher}'s listener can change
505+
* the model, the `$digest()` keeps calling the {@link ng.$rootScope.Scope#$watch watchers}
506506
* until no more listeners are firing. This means that it is possible to get into an infinite
507507
* loop. This function will throw `'Maximum iteration limit exceeded.'` if the number of
508508
* iterations exceeds 10.
509509
*
510510
* Usually, you don't call `$digest()` directly in
511511
* {@link ng.directive:ngController controllers} or in
512-
* {@link ng.$compileProvider#methods_directive directives}.
513-
* Instead, you should call {@link ng.$rootScope.Scope#methods_$apply $apply()} (typically from within
514-
* a {@link ng.$compileProvider#methods_directive directives}), which will force a `$digest()`.
512+
* {@link ng.$compileProvider#directive directives}.
513+
* Instead, you should call {@link ng.$rootScope.Scope#$apply $apply()} (typically from within
514+
* a {@link ng.$compileProvider#directive directives}), which will force a `$digest()`.
515515
*
516516
* If you want to be notified whenever `$digest()` is called,
517517
* you can register a `watchExpression` function with
518-
* {@link ng.$rootScope.Scope#methods_$watch $watch()} with no `listener`.
518+
* {@link ng.$rootScope.Scope#$watch $watch()} with no `listener`.
519519
*
520520
* In unit tests, you may need to call `$digest()` to simulate the scope life cycle.
521521
*
@@ -669,7 +669,7 @@ function $RootScopeProvider(){
669669
*
670670
* @description
671671
* Removes the current scope (and all of its children) from the parent scope. Removal implies
672-
* that calls to {@link ng.$rootScope.Scope#methods_$digest $digest()} will no longer
672+
* that calls to {@link ng.$rootScope.Scope#$digest $digest()} will no longer
673673
* propagate to the current scope and its children. Removal also implies that the current
674674
* scope is eligible for garbage collection.
675675
*
@@ -751,7 +751,7 @@ function $RootScopeProvider(){
751751
*
752752
* - it will execute after the function that scheduled the evaluation (preferably before DOM
753753
* rendering).
754-
* - at least one {@link ng.$rootScope.Scope#methods_$digest $digest cycle} will be performed after
754+
* - at least one {@link ng.$rootScope.Scope#$digest $digest cycle} will be performed after
755755
* `expression` execution.
756756
*
757757
* Any exceptions from the execution of the expression are forwarded to the
@@ -795,7 +795,7 @@ function $RootScopeProvider(){
795795
* framework. (For example from browser DOM events, setTimeout, XHR or third party libraries).
796796
* Because we are calling into the angular framework we need to perform proper scope life
797797
* cycle of {@link ng.$exceptionHandler exception handling},
798-
* {@link ng.$rootScope.Scope#methods_$digest executing watches}.
798+
* {@link ng.$rootScope.Scope#$digest executing watches}.
799799
*
800800
* ## Life cycle
801801
*
@@ -816,11 +816,11 @@ function $RootScopeProvider(){
816816
* Scope's `$apply()` method transitions through the following stages:
817817
*
818818
* 1. The {@link guide/expression expression} is executed using the
819-
* {@link ng.$rootScope.Scope#methods_$eval $eval()} method.
819+
* {@link ng.$rootScope.Scope#$eval $eval()} method.
820820
* 2. Any exceptions from the execution of the expression are forwarded to the
821821
* {@link ng.$exceptionHandler $exceptionHandler} service.
822-
* 3. The {@link ng.$rootScope.Scope#methods_$watch watch} listeners are fired immediately after the
823-
* expression was executed using the {@link ng.$rootScope.Scope#methods_$digest $digest()} method.
822+
* 3. The {@link ng.$rootScope.Scope#$watch watch} listeners are fired immediately after the
823+
* expression was executed using the {@link ng.$rootScope.Scope#$digest $digest()} method.
824824
*
825825
*
826826
* @param {(string|function())=} exp An angular expression to be executed.
@@ -853,7 +853,7 @@ function $RootScopeProvider(){
853853
* @function
854854
*
855855
* @description
856-
* Listens on events of a given type. See {@link ng.$rootScope.Scope#methods_$emit $emit} for
856+
* Listens on events of a given type. See {@link ng.$rootScope.Scope#$emit $emit} for
857857
* discussion of event life cycle.
858858
*
859859
* The event listener function format is: `function(event, args...)`. The `event` object
@@ -903,20 +903,20 @@ function $RootScopeProvider(){
903903
*
904904
* @description
905905
* Dispatches an event `name` upwards through the scope hierarchy notifying the
906-
* registered {@link ng.$rootScope.Scope#methods_$on} listeners.
906+
* registered {@link ng.$rootScope.Scope#$on} listeners.
907907
*
908908
* The event life cycle starts at the scope on which `$emit` was called. All
909-
* {@link ng.$rootScope.Scope#methods_$on listeners} listening for `name` event on this scope get
909+
* {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get
910910
* notified. Afterwards, the event traverses upwards toward the root scope and calls all
911911
* registered listeners along the way. The event will stop propagating if one of the listeners
912912
* cancels it.
913913
*
914-
* Any exception emitted from the {@link ng.$rootScope.Scope#methods_$on listeners} will be passed
914+
* Any exception emitted from the {@link ng.$rootScope.Scope#$on listeners} will be passed
915915
* onto the {@link ng.$exceptionHandler $exceptionHandler} service.
916916
*
917917
* @param {string} name Event name to emit.
918918
* @param {...*} args Optional one or more arguments which will be passed onto the event listeners.
919-
* @return {Object} Event object (see {@link ng.$rootScope.Scope#methods_$on}).
919+
* @return {Object} Event object (see {@link ng.$rootScope.Scope#$on}).
920920
*/
921921
$emit: function(name, args) {
922922
var empty = [],
@@ -971,19 +971,19 @@ function $RootScopeProvider(){
971971
*
972972
* @description
973973
* Dispatches an event `name` downwards to all child scopes (and their children) notifying the
974-
* registered {@link ng.$rootScope.Scope#methods_$on} listeners.
974+
* registered {@link ng.$rootScope.Scope#$on} listeners.
975975
*
976976
* The event life cycle starts at the scope on which `$broadcast` was called. All
977-
* {@link ng.$rootScope.Scope#methods_$on listeners} listening for `name` event on this scope get
977+
* {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get
978978
* notified. Afterwards, the event propagates to all direct and indirect scopes of the current
979979
* scope and calls all registered listeners along the way. The event cannot be canceled.
980980
*
981-
* Any exception emitted from the {@link ng.$rootScope.Scope#methods_$on listeners} will be passed
981+
* Any exception emitted from the {@link ng.$rootScope.Scope#$on listeners} will be passed
982982
* onto the {@link ng.$exceptionHandler $exceptionHandler} service.
983983
*
984984
* @param {string} name Event name to broadcast.
985985
* @param {...*} args Optional one or more arguments which will be passed onto the event listeners.
986-
* @return {Object} Event object, see {@link ng.$rootScope.Scope#methods_$on}
986+
* @return {Object} Event object, see {@link ng.$rootScope.Scope#$on}
987987
*/
988988
$broadcast: function(name, args) {
989989
var target = this,

‎src/ng/sce.js

+53-53
Large diffs are not rendered by default.

‎src/ng/timeout.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function $TimeoutProvider() {
2727
* @param {function()} fn A function, whose execution should be delayed.
2828
* @param {number=} [delay=0] Delay in milliseconds.
2929
* @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise
30-
* will invoke `fn` within the {@link ng.$rootScope.Scope#methods_$apply $apply} block.
30+
* will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block.
3131
* @returns {Promise} Promise that will be resolved when the timeout is reached. The value this
3232
* promise will be resolved with is the return value of the `fn` function.
3333
*

‎src/ngMock/angular-mocks.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ angular.mock.$LogProvider = function() {
430430
* @description
431431
* Mock implementation of the $interval service.
432432
*
433-
* Use {@link ngMock.$interval#methods_flush `$interval.flush(millis)`} to
433+
* Use {@link ngMock.$interval#flush `$interval.flush(millis)`} to
434434
* move forward by `millis` milliseconds and trigger any functions scheduled to run in that
435435
* time.
436436
*
@@ -439,7 +439,7 @@ angular.mock.$LogProvider = function() {
439439
* @param {number=} [count=0] Number of times to repeat. If not set, or 0, will repeat
440440
* indefinitely.
441441
* @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise
442-
* will invoke `fn` within the {@link ng.$rootScope.Scope#methods_$apply $apply} block.
442+
* will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block.
443443
* @returns {promise} A promise which will be notified on each iteration.
444444
*/
445445
angular.mock.$IntervalProvider = function() {

‎src/ngRoute/routeParams.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ngRouteModule.provider('$routeParams', $RouteParamsProvider);
1414
* Requires the {@link ngRoute `ngRoute`} module to be installed.
1515
*
1616
* The route parameters are a combination of {@link ng.$location `$location`}'s
17-
* {@link ng.$location#methods_search `search()`} and {@link ng.$location#methods_path `path()`}.
17+
* {@link ng.$location#search `search()`} and {@link ng.$location#path `path()`}.
1818
* The `path` parameters are extracted when the {@link ngRoute.$route `$route`} path is matched.
1919
*
2020
* In case of parameter name collision, `path` params take precedence over `search` params.

0 commit comments

Comments
 (0)
This repository has been archived.