You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aio/content/guide/ajs-quick-reference.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,7 @@ The following table lists some of the key AngularJS template features with their
140
140
141
141
Angular has true template input variables that are explicitly defined using the `let` keyword.
142
142
143
-
For more information, see the [Template input variables](guide/structural-directives#template-input-variable) section of [Structural Directives](guide/structural-directives).
143
+
For more information, see the [Structural directive shorthand](guide/structural-directives#shorthand) section of [Structural Directives](guide/structural-directives).
Copy file name to clipboardExpand all lines: aio/content/guide/built-in-directives.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,7 +198,7 @@ The string `"let item of items"` instructs Angular to do the following:
198
198
* Translate `"let item of items"` into an `<ng-template>` around the host element
199
199
* Repeat the `<ng-template>` for each `item` in the list
200
200
201
-
For more information see the [`<ng-template>` section](guide/structural-directives#the-ng-template) of [Structural directives](guide/structural-directives).
201
+
For more information see the [Structural directive shorthand](guide/structural-directives#shorthand) section of [Structural directives](guide/structural-directives).
202
202
### Repeating a component view
203
203
204
204
To repeat a component element, apply `*ngFor` to the selector.
@@ -215,7 +215,7 @@ The following example references `item` first in an interpolation and then passe
For information on how to build your own custom directives, see [Attribute Directives](guide/attribute-directives) and [Structural Directives](guide/structural-directives).
Copy file name to clipboardExpand all lines: aio/content/guide/glossary.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -340,6 +340,12 @@ Angular supplies a number of built-in directives that begin with the `ng` prefix
340
340
You can also create new directives to implement your own functionality.
341
341
You associate a *selector* (an HTML tag such as `<my-directive>`) with a custom directive, thereby extending the [template syntax](guide/template-syntax) that you can use in your apps.
342
342
343
+
**UpperCamelCase**, such as `NgIf`, refers to a directive class.
344
+
You can use **UpperCamelCase** when describing properties and directive behavior.
345
+
346
+
**lowerCamelCase**, such as `ngIf` refers to a directive's attribute name.
347
+
You can use **lowerCamelCase** when describing how to apply the directive to an element in the HTML template.
An expression can also refer to properties of the _template's_ context such as a [template input variable](guide/structural-directives#template-input-variables) or a [template reference variable](guide/template-reference-variables).
89
+
An expression can also refer to properties of the _template's_ context such as a [template input variable](guide/structural-directives#shorthand) or a [template reference variable](guide/template-reference-variables).
90
90
91
91
The following example uses a template input variable of `customer`.
0 commit comments