summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-09-20 15:20:10 +0000
committerSarven Capadisli <csarven@status.net>2009-09-20 15:20:10 +0000
commit182257cbbf1557c2671b1995c9126c45b0bd8e79 (patch)
tree1db28c0531c5dafa9f83469a39ee49f6aee14efe /plugins
parent49e91ec7d068fa7b98576207696d2192418baf5b (diff)
Fixed indenting
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Meteor/meteorupdater.js38
1 files changed, 19 insertions, 19 deletions
diff --git a/plugins/Meteor/meteorupdater.js b/plugins/Meteor/meteorupdater.js
index e8bca3eb4..939aed00a 100644
--- a/plugins/Meteor/meteorupdater.js
+++ b/plugins/Meteor/meteorupdater.js
@@ -3,28 +3,28 @@
var MeteorUpdater = function()
{
- return {
+ return {
- init: function(server, port, timeline)
- {
- var screen_name;
+ init: function(server, port, timeline)
+ {
+ var screen_name;
- Meteor.callbacks["process"] = function(data) {
- var d = JSON.parse(data);
- screen_name = d['user']['screen_name'];
+ Meteor.callbacks["process"] = function(data) {
+ var d = JSON.parse(data);
+ screen_name = 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) {
- RealtimeUpdate.receive(d);
- }
- };
+ if (timeline == 'public' ||
+ $('address .url')[0].href+screen_name+'/all' == window.location.href ||
+ $('address .url')[0].href+screen_name == window.location.href) {
+ RealtimeUpdate.receive(d);
+ }
+ };
- Meteor.host = server;
- Meteor.port = port;
- Meteor.joinChannel(timeline, 0);
- Meteor.connect();
- }
- }
+ Meteor.host = server;
+ Meteor.port = port;
+ Meteor.joinChannel(timeline, 0);
+ Meteor.connect();
+ }
+ }
}();