mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
// Export Router Instance
|
|
FlowRouter = new Router();
|
|
FlowRouter.Router = Router;
|
|
FlowRouter.Route = Route;
|
|
|
|
// Initialize FlowRouter
|
|
Meteor.startup(function () {
|
|
if(!FlowRouter._askedToWait) {
|
|
FlowRouter.initialize();
|
|
}
|
|
});
|