6 lines
115 B
JavaScript
6 lines
115 B
JavaScript
Demo.Router.map(function() {
|
|
this.route('demo', function() {
|
|
this.route('step', { path: '/:id' });
|
|
});
|
|
});
|