Skip to content

Instantly share code, notes, and snippets.

@tmeasday
tmeasday / gist:9086145
Last active August 29, 2015 13:56 — forked from dburles/gist:9086087
if (Meteor.isClient) {
Meteor.subscribeReactive = function(name) {
// ...
};
}
var relations = {};
Meteor.Collection.prototype.relations = function(relations) {
relations[this._name] = relations;
};