tweetcast/client/js/connect-nodejs.js
changeset 535 8276f3ff7a3f
parent 534 0a2505c3b547
child 536 5dd170a735e9
--- a/tweetcast/client/js/connect-nodejs.js	Mon Mar 05 18:41:11 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-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