basic frontend setup, List model updated with wipLimit field

This commit is contained in:
amadilsons 2017-09-28 16:59:53 +02:00
parent eb945f26a3
commit c9c650664f
6 changed files with 31 additions and 2 deletions

View file

@ -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'),
});