web/res/js-tweetcast/connect-gevent.js
changeset 420 eb7c2cff1816
parent 419 ad151a86046f
child 421 c8db83b70def
--- a/web/res/js-tweetcast/connect-gevent.js	Fri Dec 16 10:39:51 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-function connectTweets() {
-    $.getJSON('http://' + document.location.hostname + ':8888/?callback=?', function(data) {
-        loadTweets(data.tweets)
-    } );
-    
-    setInterval(function() {
-        if (!twCx.tweets) {
-            return;
-        }
-        $.getJSON('http://' + document.location.hostname + ':8888/?after_id=' + twCx.tweets[twCx.tweets.length - 1].id + '&callback=?', function(data) {
-            loadTweets(data.tweets, true);
-        });
-    }, 1000)
-}
\ No newline at end of file