_helpers.js 214 B

12345678910
  1. GetSub = function (name) {
  2. for(var id in Meteor.connection._subscriptions) {
  3. var sub = Meteor.connection._subscriptions[id];
  4. if(name === sub.name) {
  5. return sub;
  6. }
  7. }
  8. };
  9. FlowRouter.route('/');