fast-render.js 156 B

1234567
  1. FastRender.onAllRoutes(function() {
  2. this.subscribe('boards');
  3. });
  4. FastRender.route('/b/:id/:slug', function({ id }) {
  5. this.subscribe('board', id);
  6. });