summaryrefslogtreecommitdiff
path: root/plugins/Meteor
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-09-23 11:07:56 -0400
committerEvan Prodromou <evan@status.net>2009-09-23 11:07:56 -0400
commit87ff03890e6512bf4cf336c5583382e22bb75414 (patch)
tree6fa8151f432fd4e4d1e5ba1b3f318adc9713aef2 /plugins/Meteor
parente6cbe3a26938ca8d88d44bacc6c40ba09f5f1fd1 (diff)
Revert "Made it slighly more compact with less jQuery selection"
This reverts commit c9bc3900909a85b9b4be31c4dac7f809127a8bf0.
Diffstat (limited to 'plugins/Meteor')
-rw-r--r--plugins/Meteor/meteorupdater.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Meteor/meteorupdater.js b/plugins/Meteor/meteorupdater.js
index a7c87330c..82594d91c 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);
-
- $user_url = $('address .url')[0].href+d['user']['screen_name'];
+ screen_name = d['user']['screen_name'];
if (timeline == 'public' ||
- $user_url+'/all' == window.location.href ||
- $user_url == window.location.href) {
-
+ $('address .url')[0].href+screen_name+'/all' == window.location.href ||
+ $('address .url')[0].href+screen_name == window.location.href) {
RealtimeUpdate.receive(d);
}
};