-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.5 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>my notebook</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body ng-app="todoAPP" ng-controller="todoController">
<section class="todoapp">
<header class="header">
<h1>我的记事本</h1>
<form ng-submit="add()">
<input class="new-todo" placeholder="What needs to be done?" autofocus
ng-model='newTask'>
</form>
</header>
<!-- This section should be hidden by default and shown when there are todos -->
<section class="main">
<input class="toggle-all" type="checkbox" ng-click='toggleAll()'>
<label for="toggle-all">Mark all as complete</label>
<ul class="todo-list">
<!-- These are here just to show the structure of the list items -->
<!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
<li ng-repeat="list in data | filter:search track by $index" ng-class="{completed:list.complete,'editing':iseiding ==list.id}">
<div class="view">
<input class="toggle" type="checkbox" checked ng-model='list.complete'>
<label auto-fucus ng-dblclick='edit(list.id)'>{{list.name}}</label>
<button class="destroy" ng-click="remove(list.id)"></button>
</div>
<form ng-submit='save()'>
<input class="edit" ng-model='list.name'>
</form>
</li>
</ul>
</section>
<footer class="footer">
<span class="todo-count"><strong>{{count()}}</strong> item left</span>
<ul class="filters">
<li>
<a ng-class="{'selected':search.complete==undefined}" href="#/" >All</a>
</li>
<li>
<a ng-class="{'selected':search.complete==false}" href="#/active" >Active</a>
</li>
<li>
<a ng-class="{'selected':search.complete==true}" href="#/completed" >Completed</a>
</li>
</ul>
<button class="clear-completed" ng-click='clearCompleteAll()' ng-show="isshow()">Clear completed</button>
</footer>
</section>
<script type="text/javascript" src='js/angular.js'></script>
<script type="text/javascript" src='js/controls/controler.js'></script>
<script type="text/javascript" src='js/servers/todoservice.js'></script>
<script type="text/javascript" src='js/directive/autofucus.js'></script>
<script src="js/app.js"></script>
</body>
</html>