mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
basic frontend setup, List model updated with wipLimit field
This commit is contained in:
parent
eb945f26a3
commit
c9c650664f
6 changed files with 31 additions and 2 deletions
|
|
@ -21,6 +21,11 @@ BlazeComponent.extendComponent({
|
|||
return count > this.limitToShowCardsCount();
|
||||
},
|
||||
|
||||
hasWipLimit() {
|
||||
return null;
|
||||
//return this.currentData().wipLimit ? true : false;
|
||||
},
|
||||
|
||||
events() {
|
||||
return [{
|
||||
'click .js-open-list-menu': Popup.open('listAction'),
|
||||
|
|
@ -61,6 +66,7 @@ Template.listActionPopup.events({
|
|||
this.archive();
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-set-wip-limit': Popup.open('setWipLimit'),
|
||||
'click .js-more': Popup.open('listMore'),
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue