Made it slighly more compact with less jQuery selection
This commit is contained in:
parent
8f84bc88d7
commit
c9bc390090
|
@ -8,15 +8,15 @@ var MeteorUpdater = function()
|
||||||
|
|
||||||
init: function(server, port, timeline)
|
init: function(server, port, timeline)
|
||||||
{
|
{
|
||||||
var screen_name;
|
|
||||||
|
|
||||||
Meteor.callbacks["process"] = function(data) {
|
Meteor.callbacks["process"] = function(data) {
|
||||||
var d = JSON.parse(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' ||
|
if (timeline == 'public' ||
|
||||||
$('address .url')[0].href+screen_name+'/all' == window.location.href ||
|
$user_url+'/all' == window.location.href ||
|
||||||
$('address .url')[0].href+screen_name == window.location.href) {
|
$user_url == window.location.href) {
|
||||||
|
|
||||||
RealtimeUpdate.receive(d);
|
RealtimeUpdate.receive(d);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user