Skip to content

Instantly share code, notes, and snippets.

View arturcarvalho's full-sized avatar

Artur Carvalho arturcarvalho

View GitHub Profile
//common to client and server
SharedCollection = new Meteor.Collection('shared');
//client from here on out
LocalMirror = new Meteor.Collection(null);
var convertSharedToLocal = function(sharedDoc) {
var localDoc = LocalCollection._deepcopy(sharedDoc); // undocumented API, might change