From c9bc3900909a85b9b4be31c4dac7f809127a8bf0 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 21 Sep 2009 11:35:56 +0000 Subject: Made it slighly more compact with less jQuery selection --- plugins/Meteor/meteorupdater.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins') diff --git a/plugins/Meteor/meteorupdater.js b/plugins/Meteor/meteorupdater.js index 82594d91c..a7c87330c 100644 --- a/plugins/Meteor/meteorupdater.js +++ b/plugins/Meteor/meteorupdater.js @@ -8,15 +8,15 @@ 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']; + + $user_url = $('address .url')[0].href+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) { + $user_url+'/all' == window.location.href || + $user_url == window.location.href) { + RealtimeUpdate.receive(d); } }; -- cgit v1.2.3-54-g00ecf