File: index.html

package info (click to toggle)
tinycon.js 0.6.5%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: javascript: 221; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
	<head>
		<link rel="icon" href="favicon.ico">
		<title>Tinycon</title>
		
		<script src="../tinycon.js"></script>
		<script>
			(function(){
				var count = 0;
				setInterval(function(){
					++count;
					Tinycon.setBubble(count);

				}, 1000);
			})();
		</script>
	</head>
	<body>
	</body>
</html>