From 6ae7057b5ca9a8c2ef79d28b362508fc14a3145b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 13 Jul 2009 03:15:39 -0400 Subject: correctly pass JSON object to receive function for Meteor --- plugins/Meteor/meteorupdater.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/Meteor/meteorupdater.js b/plugins/Meteor/meteorupdater.js index f647ded3b..60d2cc372 100644 --- a/plugins/Meteor/meteorupdater.js +++ b/plugins/Meteor/meteorupdater.js @@ -30,9 +30,9 @@ var MeteorUpdater = function() } } - function receive(message) + function receive(data) { - id = message.data.id; + id = data.id; // Don't add it if it already exists // @@ -40,7 +40,7 @@ var MeteorUpdater = function() return; } - var noticeItem = makeNoticeItem(message.data); + var noticeItem = makeNoticeItem(data); $("#notices_primary .notices").prepend(noticeItem, true); $("#notices_primary .notice:first").css({display:"none"}); $("#notices_primary .notice:first").fadeIn(1000); -- cgit v1.2.3-54-g00ecf