-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.05 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
<!doctype html>
<html ng-app="todoapp">
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular.min.js"></script>
<script type="text/javascript" src="http://documentcloud.github.com/underscore/underscore-min.js"></script>
<script type="text/javascript" src="todo.js"></script>
<link rel="stylesheet" type="text/css" href="todo.css">
</head>
<body>
<div ng-controller="TodoCtrl">
<h3>Total todos: {{totalTodos()}} ({{numCompletedTodos()}} completed)</h3>
<ul>
<todo-li ng-repeat="todo in todos | orderBy:'done'"></todo-li>
<li>
<form ng-submit="addTodo()">
<input type="text" ng-model="newTodoText">
</form>
</li>
</ul>
<button ng-click="clearCompleted()">Clear completed Todos</button>
</div>
<script type="text/ng-template" id="todo-li.html">
<li>
<input type="checkbox" ng-model="todo.done">
<span class="done-{{todo.done}}">{{todo.text}}</span>
</li>
</script>
</body>
</html>