mirror of
https://github.com/wekan/wekan.git
synced 2026-01-03 08:08:49 +01:00
Introducing third board view: calendar.
A dependency to rzymek:fullcalendar has also been added.
This commit is contained in:
parent
43dde4a10f
commit
226d25ca94
8 changed files with 21 additions and 2 deletions
|
|
@ -89,9 +89,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'() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue