Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 36a3ea2

Browse files
chalinkwalrath
authored andcommitted
docs(user-input): misc fixes (#2430)
- 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.
1 parent 8d75680 commit 36a3ea2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

public/docs/dart/latest/guide/user-input.jade

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ include ../_util-fns
2323
:marked
2424
The `(click)` to the left of the equal sign identifies the button's click event as the **target of the binding**.
2525
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
2727
of Dart with restrictions and a few added tricks.
2828

2929
When writing a binding we must be aware of a template statement's **execution context**.
@@ -49,7 +49,6 @@ include ../_util-fns
4949
which we pass to the component's `onKey()` method.
5050
The user data we want is in that variable somewhere.
5151

52-
important
5352
.callout.is-important
5453
header $event vs. \$event
5554
:marked
@@ -67,7 +66,7 @@ important
6766

6867
The `onKey()` component method is where we extract the user's input
6968
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)
7170
to display the accumulating `values` property back on screen.
7271

7372
Enter the letters "abc", and then backspace to remove them.

0 commit comments

Comments
 (0)