-
Notifications
You must be signed in to change notification settings - Fork 9
/
newtab.html
33 lines (33 loc) · 1.29 KB
/
newtab.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/jquery.js"> </script>
<script type="text/javascript" src="js/jquery.textarea-expander.js"> </script>
<script type="text/javascript" src="js/dragsort.js"> </script>
<script type="text/javascript" src="js/todo.js"> </script>
<title>New Tab</title>
</head>
<body>
<div id="todo">
<h1>Things to do</h1>
<ul id="list">
<li id="new-item">
<span class="container"><span class="fake-drag">»</span><textarea class="edit" id="next">...</textarea></span>
</li>
</ul>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-85731-14']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', 'true']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
</script>
</body>
</html>