-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (51 loc) · 2.19 KB
/
index.html
File metadata and controls
63 lines (51 loc) · 2.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="gray" />
<title>Tasker</title>
<link rel="stylesheet" href="http://mtcanvas.com/css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/theme.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://mtcanvas.com/api/file-saver/file-saver.js"></script>
<script src="http://zevanrosser.github.com/jquery.select-all/jquery.select-all.js"></script>
<script src="js/tasker.js"></script>
</head>
<body>
<script id="main-ui" type="text/html">
<div id="top-ui">
<h2>Tasker</h2>
<button id="clear-all" data-var="clearAll">clear all</button>
<button id="save-btn" data-var="saveBtn">save / update</button>
<form id="add-form" data-var="addForm">
<input type="text" data-var="title" placeholder="task list name" autocorrect="off" autocapitalize="off"/>
<input type="submit" value="add" />
</form>
</div>
<div data-var="taskContainer" id="task-container"></div>
</script>
<script id="task-list" type="text/html">
<div class="task-list">
<button class="close">X</button>
<span class="title">~title</span>
<form class="add-form">
<input type="text" data-var="newTask" class="new-task" placeholder="task" autocorrect="off" autocapitalize="off"/>
<input type="submit" value="add" />
</form>
<div class="tasks">
</div>
<div class="feedback">0/0 completed</div>
<div class="bar"><div class="well"></div></div>
</div>
</script>
<script id="task" type="text/html">
<div class="task">
<span class="little-btn">x </span>
<input type="checkbox" class="check" data-var="check" /> <span>~text</span>
</div>
</script>
</body>
</html>