summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-09-21 11:35:56 +0000
committerSarven Capadisli <csarven@status.net>2009-09-21 11:35:56 +0000
commitc9bc3900909a85b9b4be31c4dac7f809127a8bf0 (patch)
tree84de70e0b5e3fe7ac03d7a8f114af6a8e4653d1b /plugins
parent8f84bc88d7855ac86b87bf4e8813e18c565d1a52 (diff)
Made it slighly more compact with less jQuery selection
Diffstat (limited to 'plugins')
-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 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);
}
};