fix(docs,benchmarks): remove invalid </input> closing tags

Closing #5752
This commit is contained in:
Igor Minar 2015-12-15 00:45:31 -08:00
parent 2835265916
commit 5b63b6764f
3 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@ import {bootstrap} from 'angular2/bootstrap';
@Component({
selector: 'lowerupper-example',
template: `<div>
<label>Name: </label><input #name (keyup)="change(name.value)" type="text"></input>
<label>Name: </label><input #name (keyup)="change(name.value)" type="text">
<p>In lowercase: <pre>'{{value | lowercase}}'</pre></p>
<p>In uppercase: <pre>'{{value | uppercase}}'</pre></p>
</div>`

View File

@ -5,9 +5,9 @@
</head>
<body>
<form>
App size: <input type="text" name="appSize" value="1"></input><br>
Iteration count: <input type="text" name="iterationCount" value="1"></input><br>
Scroll increment: <input type="text" name="scrollIncrement" value="1"></input><br>
App size: <input type="text" name="appSize" value="1"><br>
Iteration count: <input type="text" name="iterationCount" value="1"><br>
Scroll increment: <input type="text" name="scrollIncrement" value="1"><br>
</form>
<div>
<button id="run-btn">Run</button>

View File

@ -5,9 +5,9 @@
</head>
<body>
<form>
App size: <input type="text" name="appSize" value="1"></input><br>
Iteration count: <input type="text" name="iterationCount" value="1"></input><br>
Scroll increment: <input type="text" name="scrollIncrement" value="1"></input><br>
App size: <input type="text" name="appSize" value="1"><br>
Iteration count: <input type="text" name="iterationCount" value="1"><br>
Scroll increment: <input type="text" name="scrollIncrement" value="1"><br>
</form>
<div>
<button id="run-btn">Run</button>