-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (35 loc) · 1.62 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Indy.js Knockout Examples</title>
<link type="text/css" rel="stylesheet" media="all" href="lib/bootstrap/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Indy.js Knockout Presentation & Examples</h1>
<fieldset>
<legend>Links</legend>
<ul>
<li>Knockout Home Page - <a href="http://knockoutjs.com" target="_blank">http://knockoutjs.com</a></li>
<li>Knockout Live Tutorial Site - <a href="http://learn.knockoutjs.com" target="_blank">http://learn.knockoutjs.com</a></li>
<li>Knockout on Github - <a href="https://github.com/SteveSanderson/knockout" target="_blank">https://github.com/SteveSanderson/knockout</a></li>
<li>Knockout on Stack Overflow - <a href="http://stackoverflow.com/questions/tagged/knockout.js" target="_blank">http://stackoverflow.com/questions/tagged/knockout.js</a></li>
<li>This Presentation on Github - <a href="hhttps://github.com/JoeDoyle23/IndyJS-Knockout" target="_blank">https://github.com/JoeDoyle23/IndyJS-Knockout</a></li>
</ul>
</fieldset>
<fieldset>
<legend>Examples</legend>
<ul>
<li><a href="examples/basic.html">Basic Data-binding</a></li>
<li><a href="examples/bindings.html">Types of Bindings</a></li>
<li><a href="examples/observables.html">Working with Observables</a></li>
<li><a href="examples/lists.html">Lists & Collections</a></li>
<li><a href="examples/mapping.html">Mapping the Model to the ViewModel</a></li>
<li><a href="examples/savingdata.html">Saving Data</a></li>
<li><a href="examples/testing.html">Unit Testing</a></li>
</ul>
</fieldset>
<div>
</body>
</html>