tweetcast/client/js/connect-nodejs.js
changeset 404 89968844eb7d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tweetcast/client/js/connect-nodejs.js	Mon Dec 12 12:54:14 2011 +0100
@@ -0,0 +1,16 @@
+document.write('<script type="text/javascript" src="/socket.io/socket.io.js"><' + '/script>');
+
+function connectTweets() {
+    socket = io.connect('http://' + document.location.host );
+    
+    socket.on("initial_data", function(data) {
+        loadTweets(data.tweets)
+    });
+    
+    socket.on("update", function(data) {
+        if (!twCx.tweets) {
+            return;
+        }
+        loadTweets(data.new_tweets, true);
+    });
+}
\ No newline at end of file