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