-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
109 lines (94 loc) · 3.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Task List</title>
<!--Mobile Meta Tags-->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
<!--Basic Tag Polyfill + Modernizr API-->
<script src="scripts/modernizr-dev.js"></script>
<script src="scripts/webcomponents.min.js"></script>
<!-- Imports custom element -->
<link rel="import" href="components/tasklist-video.html">
<link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
<link href="content/normalize-2.0.1.css" rel="stylesheet" type="text/css" />
<link href="content/site.less" type="text/css" rel="stylesheet/less" />
<!--LESS JS parser-->
<script src="scripts/less-1.3.1.min.js"></script>
</head>
<body>
<header>
<hgroup>
<h1>Task List</h1>
<img src="content/online/online.png" style="width:20px;height:20px;" />
</hgroup>
</header>
<section>
<!--HTML5 FORMS-->
<form>
<input type="text" placeholder="Enter a task (e.g. Finish this demo)" id="txtTask" required title="Please enter a task" />
<button id="btnSaveTask" class="blue">Save It</button>
</form>
<div id="content">
<div id="tasks">
<h2>Saved Tasks</h2>
<ul id="lstTasks">
<li>You've got time! No tasks yet.</li>
</ul>
</div>
<div id="sidebar">
<!--DRAG n DROP + File API-->
<div id="importTask"><p>
Drop Task Here
</p>
</div>
<!--GEOLOCATION-->
<div id="userMap" style="width:200px;height:200px;"></div>
<!--DRAG n DROP-->
<div id="team">
<ul>
<li>Team Member 1</li>
<li>Team Member 2</li>
</ul>
<div style="clear:both;"> </div>
</div>
<!--VIDEO-->
<div style="width:200px;margin: 10px 0;" id="vidHolder">
<!--HTML5 First, Fallback to Flash-->
<tasklist-video file="crazyMan.mp4" />
</div>
</div>
</div>
</section>
<script src="scripts/jquery-1.7.1.min.js"></script>
<script src="scripts/storage.idb.js"></script>
<script src="scripts/storage.sql.js"></script>
<script src="http://nodesocketdemo.jit.su/socket.io/socket.io.js"></script>
<script type="text/javascript">
if(Modernizr.indexeddb){
window.storage = storageIDB;
}else{
window.storage = storageSQL;
}
var io;
if(typeof(io) === undefined){
io = {};
}
</script>
<!--Add reference to application's JavaScript logic-->
<script src="scripts/uuid.js"></script>
<script src="scripts/app-babel.js"></script>
<script type="text/javascript">
//Init the JS application logic in jQuery ready event
$(function(){
tasklist.init("#btnSaveTask", "#lstTasks", "#txtTask");
});
</script>
<!--Google Map API-->
<!--Get your API key at: https://code.google.com/apis/console -->
<script src="//maps.googleapis.com/maps/api/js?api=AIzaSyAO2hxQ0uMBEBvY9FpEm22DRMFV2EQdQAA&sensor=false&callback=tasklist.loadLocation" async></script>
</body>
</html>