Revert "Made it slighly more compact with less jQuery selection"

This reverts commit c9bc390090.
This commit is contained in:
Evan Prodromou 2009-09-23 11:07:56 -04:00
parent e6cbe3a269
commit 87ff03890e
1 changed files with 5 additions and 5 deletions

View File

@ -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);
}
};