forked from GNUsocial/gnu-social
21 lines
481 B
JavaScript
21 lines
481 B
JavaScript
// Update the local timeline from a Meteor server
|
|
|
|
var MeteorUpdater = function()
|
|
{
|
|
return {
|
|
|
|
init: function(server, port, timeline)
|
|
{
|
|
Meteor.callbacks["process"] = function(data) {
|
|
RealtimeUpdate.receive(JSON.parse(data));
|
|
};
|
|
|
|
Meteor.host = server;
|
|
Meteor.port = port;
|
|
Meteor.joinChannel(timeline, 0);
|
|
Meteor.connect();
|
|
}
|
|
}
|
|
}();
|
|
|