Skip to content

Instantly share code, notes, and snippets.

@deanhume
Created February 9, 2012 10:35
Show Gist options
  • Save deanhume/1779160 to your computer and use it in GitHub Desktop.
Save deanhume/1779160 to your computer and use it in GitHub Desktop.
TinyCon Starter Example
<html>
<head>
<link rel="icon" href="favicon.ico">
<title>Tinycon</title>
<script src="../tinycon.js"></script>
<script>
(function(){
var count = 0;
setInterval(function(){
if (++count > 99) count = 0;
Tinycon.setBubble(count);
}, 1000);
})();
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment