fix(docs,benchmarks): remove invalid </input> closing tags
Closing #5752
This commit is contained in:
parent
2835265916
commit
5b63b6764f
|
@ -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>`
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue