mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00

Motivations: * Iron-Router foces us to use Tracker.nonreactive black magic in order to avoid un-necessary re-renders; * There is a community consensus (supported by some MDG members) that the flow-router API is easier to reason about; * The useraccounts now supports flow router (that was a blocking element when I considered the switch ~3months ago) On the server we use the Picker router, as encouraged by the Kadira team (which develop both Flow and Picker routers). In the current state of things there are some bugs related to the missing Loading architecure. Previously onRendered callback where always called when the data the component needed was available, now we have to handle this ourselves, which we will in a following commit.
5 lines
112 B
JavaScript
5 lines
112 B
JavaScript
Meteor.subscribe('boards');
|
|
|
|
Template.userFormsLayout.onRendered(function() {
|
|
EscapeActions.executeAll();
|
|
});
|