mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
#1233 Added plus button to add card on top of the list
This commit is contained in:
parent
5f697eac05
commit
3fa969eb26
3 changed files with 15 additions and 12 deletions
|
|
@ -24,6 +24,13 @@ BlazeComponent.extendComponent({
|
|||
events() {
|
||||
return [{
|
||||
'click .js-open-list-menu': Popup.open('listAction'),
|
||||
'click .js-add-card' () {
|
||||
const listDom = document.getElementById(`js-list-${this.currentData()._id}`);
|
||||
const listComponent = BlazeComponent.getComponentForElement(listDom);
|
||||
listComponent.openForm({
|
||||
position: 'top',
|
||||
});
|
||||
},
|
||||
submit: this.editTitle,
|
||||
}];
|
||||
},
|
||||
|
|
@ -36,14 +43,6 @@ Template.listActionPopup.helpers({
|
|||
});
|
||||
|
||||
Template.listActionPopup.events({
|
||||
'click .js-add-card' () {
|
||||
const listDom = document.getElementById(`js-list-${this._id}`);
|
||||
const listComponent = BlazeComponent.getComponentForElement(listDom);
|
||||
listComponent.openForm({
|
||||
position: 'top',
|
||||
});
|
||||
Popup.close();
|
||||
},
|
||||
'click .js-list-subscribe' () {},
|
||||
'click .js-select-cards' () {
|
||||
const cardIds = this.allCards().map((card) => card._id);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue