Merge branch 'devel' into nested-tasks

This commit is contained in:
Nicu Tofan 2018-06-28 17:00:35 +03:00
commit 3eba6ef285
No known key found for this signature in database
GPG key ID: 7EE66E95E64FD0B7
65 changed files with 791 additions and 103 deletions

View file

@ -90,9 +90,11 @@ BlazeComponent.extendComponent({
'click .js-toggle-board-view'() {
const currentUser = Meteor.user();
if (currentUser.profile.boardView === 'board-view-swimlanes') {
currentUser.setBoardView('board-view-lists');
currentUser.setBoardView('board-view-cal');
} else if (currentUser.profile.boardView === 'board-view-lists') {
currentUser.setBoardView('board-view-swimlanes');
} else if (currentUser.profile.boardView === 'board-view-cal') {
currentUser.setBoardView('board-view-lists');
}
},
'click .js-open-filter-view'() {