-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (83 loc) · 3.09 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
<!DOCTYPE html>
<html>
<head>
<title>Neopets link timer</title>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css">
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
<script type="text/javascript" src="form.js"></script>
<script type="text/javascript" src="jquery.validate.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28143036-1']);
_gaq.push(['_setDomainName', 'klssn.com']);
_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';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="lists-container">
</div>
<div style='height: 300px; width: 100px; background-color: red; float: left;'></div>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-7419220261353848";
/* My ad */
google_ad_slot = "9177233333";
google_ad_width = 120;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<section id="infoColumn">
<h2>Welcome to Neopets-linktimer 0.62 alpha.</h2>
<p><em>New! Prettier!</em></p>
<p>Upcoming features:</p>
<ul>
<li>Plan for 0.7: Draggable UI (move lists/links around the page)</li>
<li>Plan for 0.8: User login (no more cookies)</li>
<li>Plan for 1.0 beta: Better design</li>
</ul>
<p>Requires:</p>
<ul>
<li>A modern browser with Javascript enabled</li>
</ul>
<p>Bugs:</p>
<ul>
<li>Right-clicking or middle-clicking a link does not register it as clicked (use button then).</li>
<li>Snowager timer is completely wrong and unpredictable.</li>
<li>Others? <a href="mailto:[email protected]">Email me.</a> (remove .spam.)</li>
</ul>
<p>Issues:</p>
<ul>
<li>Cannot remove lists yet.</li>
</ul>
<p>Changelog:</p>
<ul>
<em>0.62</em> (January 10, 2012):
<li>Timers are more efficient (less lag for some people)</li>
<li>Fixed bug where you could remove the title of a list and never get it back</li>
<li>Fixed bug where a link deleted with time left would roll over to another link if created during the time left.</li><br />
<em>0.6</em> (January 4, 2012):
<li>Uses browser storage instead of cookies, so lists can be extremely large.</li>
<li>Add your own lists and links.</li>
<li>Rename lists.</li>
<li>Edit the default list.</li>
<li>Sort backwards and forwards.</li><br />
<em>0.52</em> (Oct 28 2011):
<li>Improved responsiveness and cleaned up code</li>
<li>Sort by category & use cookies to remember your sort.</li>
</ul>
</section>
<div style='clear: both; padding: 10px;'>
<g:plusone size="medium" annotation="inline"></g:plusone>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>