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
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
- Remove nonexistent `<important>` “element” since it causes problems
for ng2.io. This is probably a typo. It was more likely meant to be an
anchor name than an element name.
- Fix two PENDING links.
Copy file name to clipboardExpand all lines: public/docs/dart/latest/guide/user-input.jade
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ include ../_util-fns
23
23
:marked
24
24
The `(click)` to the left of the equal sign identifies the button's click event as the **target of the binding**.
25
25
The text within quotes on the right is the **template statement** in which we
26
-
respond to the click event by calling the component's `onClickMe` method. A template statement <!-- PENDING: link to ./template-syntax.html#template-statements --> is a subset
26
+
respond to the click event by calling the component's `onClickMe` method. A [template statement](./template-syntax.html#template-statements) is a subset
27
27
of Dart with restrictions and a few added tricks.
28
28
29
29
When writing a binding we must be aware of a template statement's **execution context**.
@@ -49,7 +49,6 @@ include ../_util-fns
49
49
which we pass to the component's `onKey()` method.
50
50
The user data we want is in that variable somewhere.
51
51
52
-
important
53
52
.callout.is-important
54
53
header $event vs. \$event
55
54
:marked
@@ -67,7 +66,7 @@ important
67
66
68
67
The `onKey()` component method is where we extract the user's input
69
68
from the event object, adding that input to the list of user data that we're accumulating in the component's `values` property.
70
-
We then use interpolation <!-- PENDING: link to ./template-syntax.html#interpolation) -->
69
+
We then use [interpolation](./template-syntax.html#interpolation)
71
70
to display the accumulating `values` property back on screen.
72
71
73
72
Enter the letters "abc", and then backspace to remove them.
0 commit comments