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

Commit dbefd67

Browse files
jamiekrugmhevery
authored andcommitted
fix(docs): Fix bad links.
1 parent aff68a9 commit dbefd67

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/content/guide/directive.ngdoc

+4-3
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ further simplification:
288288
The factory method is responsible for creating the directive. It is invoked only once, when the
289289
{@link api/ng.$compile compiler} matches the directive for the first time. You can
290290
perform any initialization work here. The method is invoked using the {@link
291-
http://localhost:8000/build/docs/api/AUTO.$injector#invoke $injector.invoke} which
291+
api/AUTO.$injector#invoke $injector.invoke} which
292292
makes it injectable following all of the rules of injection annotation.
293293

294294
## Directive Definition Object
@@ -419,7 +419,7 @@ compile functions takes the following arguments.
419419

420420
* `tAttrs` - template attributes - Normalized list of attributes declared on this element shared
421421
between all directive compile functions. See {@link
422-
#Attributes Attributes}
422+
guide/directive#Attributes Attributes}.
423423

424424
* `transclude` - A transclude linking function: `function(scope, cloneLinkingFn)`.
425425

@@ -456,7 +456,8 @@ put.
456456
already been linked.
457457

458458
* `iAttrs` - instance attributes - Normalized list of attributes declared on this element shared
459-
between all directive linking functions. See {@link #Attributes Attributes}
459+
between all directive linking functions. See {@link
460+
guide/directive#Attributes Attributes}.
460461

461462
* `controller` - a controller instance - A controller instance if at least one directive on the
462463
element defines a controller. The controller is shared among all the directives, which allows

0 commit comments

Comments
 (0)