Fixed indenting

This commit is contained in:
Sarven Capadisli 2009-09-20 15:20:10 +00:00
parent 49e91ec7d0
commit 182257cbbf
1 changed files with 19 additions and 19 deletions

View File

@ -3,28 +3,28 @@
var MeteorUpdater = function() var MeteorUpdater = function()
{ {
return { return {
init: function(server, port, timeline) init: function(server, port, timeline)
{ {
var screen_name; 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']; screen_name = d['user']['screen_name'];
if (timeline == 'public' || if (timeline == 'public' ||
$('address .url')[0].href+screen_name+'/all' == window.location.href || $('address .url')[0].href+screen_name+'/all' == window.location.href ||
$('address .url')[0].href+screen_name == window.location.href) { $('address .url')[0].href+screen_name == window.location.href) {
RealtimeUpdate.receive(d); RealtimeUpdate.receive(d);
} }
}; };
Meteor.host = server; Meteor.host = server;
Meteor.port = port; Meteor.port = port;
Meteor.joinChannel(timeline, 0); Meteor.joinChannel(timeline, 0);
Meteor.connect(); Meteor.connect();
} }
} }
}(); }();