-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
24 lines (23 loc) · 864 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<script src="bower_components/knockout/dist/knockout.debug.js"></script>
<script src="out/koExtender.js"></script>
<script src="out/SumVM.js"></script>
<script src="out/FullNameVM.js"></script>
<div class="sum">
<input data-bind="textInput: a">
<input data-bind="textInput: b">
<span data-bind="text: sum"></span>
<button data-bind="click: reset">reset</button>
</div>
<div class="sum">
<input data-bind="textInput: a">
<input data-bind="textInput: b">
<span data-bind="text: sum"></span>
<button data-bind="click: reset">reset</button>
</div>
<div class="names">
<div>First name: <span data-bind="text: firstName"></span></div>
<div>Last name: <span data-bind="text: lastName"></span></div>
<div class="heading">Hello, <input data-bind="textInput: fullName"/></div>
</div>
<script src="out/main.js"></script>