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

Update toh-pt1.jade #274

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/docs/ts/latest/tutorial/toh-pt1.jade
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ include ../../../../_includes/_util-fns
Replace the `<input>` with the following HTML

```
<input [(ng-model)]="hero.name" placeholder="name"></input>
<input [(ng-model)]="hero.name" placeholder="name">
```
Unfortunately, that change broke our application and we're no longer displaying the hero in the browser.
Let’s fix that next.
Expand Down Expand Up @@ -290,7 +290,7 @@ include ../../../../_includes/_util-fns
&ltdiv>&ltlabel>id: &lt/label>{{hero.id}}&lt/div>
&ltdiv>
&ltlabel>name: &lt/label>
&ltdiv>&ltinput value="{{hero.name}}" placeholder="name">&lt/input>&lt/div>
&ltdiv>&ltinput value="{{hero.name}}" placeholder="name">&lt/div>
&lt/div>
`,
directives: [FORM_DIRECTIVES]
Expand Down