diff options
author | Evan Prodromou <evan@status.net> | 2009-09-23 11:08:35 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-09-23 11:08:35 -0400 |
commit | 6cb2f89983f89fb7f4559fe607ca2af2c6729d27 (patch) | |
tree | cc1ec3bea58990aca68957daaf697fd362e0d462 /plugins/Meteor | |
parent | 35eb33fe2bd0d41fb4c03000c557c36125b2c809 (diff) |
Revert "Added realtime streams for all and showstream timelines"
This reverts commit 49e91ec7d068fa7b98576207696d2192418baf5b.
Diffstat (limited to 'plugins/Meteor')
-rw-r--r-- | plugins/Meteor/meteorupdater.js | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/plugins/Meteor/meteorupdater.js b/plugins/Meteor/meteorupdater.js index de01d430a..9ce68775b 100644 --- a/plugins/Meteor/meteorupdater.js +++ b/plugins/Meteor/meteorupdater.js @@ -8,17 +8,8 @@ var MeteorUpdater = function() init: function(server, port, timeline) { - var screen_name; - Meteor.callbacks["process"] = function(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); - } + RealtimeUpdate.receive(JSON.parse(data)); }; Meteor.host = server; |