textcircle.js 214 B

12345678910
  1. this.Documents = new Mongo.Collection("documents");
  2. if (Meteor.isClient) {
  3. }
  4. if (Meteor.isServer) {
  5. Meteor.startup(function () {
  6. // startup code that creates a document in case there isn't one yet.
  7. });
  8. }