Implement fast-render

This required updating 3stack:presence because of the following bug:

  https://github.com/3stack-software/meteor-presence/pull/3
This commit is contained in:
Maxime Quandalle 2015-10-30 03:05:43 +01:00
parent dd3cdf3945
commit 41b23f88ae
5 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,7 @@
FastRender.onAllRoutes(function() {
this.subscribe('boards');
});
FastRender.route('/b/:id/:slug', function({ id }) {
this.subscribe('board', id);
});