Added realtime streams for all and showstream timelines

This commit is contained in:
Sarven Capadisli
2009-09-20 15:14:46 +00:00
parent 44820d296d
commit 49e91ec7d0
2 changed files with 29 additions and 16 deletions

View File

@@ -7,8 +7,17 @@ var MeteorUpdater = function()
init: function(server, port, timeline)
{
var screen_name;
Meteor.callbacks["process"] = function(data) {
RealtimeUpdate.receive(JSON.parse(data));
var d = JSON.parse(data);
screen_name = d['user']['screen_name'];
if (timeline == 'public' ||
$('address .url')[0].href+screen_name+'/all' == window.location.href ||
$('address .url')[0].href+screen_name == window.location.href) {
RealtimeUpdate.receive(d);
}
};
Meteor.host = server;