Skip to content

Commit 32df247

Browse files
committed
v3.4.4
- Implement #33 - Uncouple Blaze and jQuery
1 parent 751ad76 commit 32df247

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

.versions

Lines changed: 3 additions & 14 deletions

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ FlowRouter Extra
1010
Carefully extended [flow-router](https://github.com/kadirahq/flow-router) package.
1111

1212
#### Features:
13+
- Not tied to Blaze, ready for [React](https://github.com/VeliovGroup/flow-router/issues?utf8=✓&q=is%3Aissue+label%3Areact+) and other templating/components engines/libs;
1314
- Great [tests coverage](https://github.com/VeliovGroup/flow-router/tree/master/test);
1415
- Up-to-date [dependencies](https://github.com/VeliovGroup/flow-router/blob/master/package.js);
1516
- Following semver with regular [releases](https://github.com/VeliovGroup/flow-router/releases);
@@ -33,14 +34,15 @@ import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
3334
FlowRouter.route('/', {
3435
name: 'index',
3536
action() {
37+
// Render a template using Blaze
3638
this.render('templateName');
3739
}
3840
});
3941

4042
// Create 404 route (catch-all)
4143
FlowRouter.route('*', {
4244
action() {
43-
// Show 404 error page
45+
// Show 404 error page using Blaze
4446
this.render('notFound');
4547
}
4648
});

0 commit comments

Comments
 (0)