tweetcast/client/js/connect-nodejs.js
author Raphael Velt <raph.velt@gmail.com>
Tue, 14 Feb 2012 14:17:43 +0100
changeset 506 f7fd2458fc5c
parent 404 89968844eb7d
permissions -rw-r--r--
Added museo 14.02.12 and several corrections

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);
    });
}