Add arrow up icon in the right of the plus icon

This commit is contained in:
Martin Filser 2021-11-27 20:12:01 +01:00
parent b5ee0649db
commit 2767c444b2
4 changed files with 21 additions and 11 deletions

View file

@ -101,7 +101,7 @@ BlazeComponent.extendComponent({
this.starred(!this.starred());
},
'click .js-open-list-menu': Popup.open('listAction'),
'click .js-add-card.fa-plus'(event) {
'click .js-add-card.list-header-plus-top'(event) {
const listDom = $(event.target).parents(
`#js-list-${this.currentData()._id}`,
)[0];
@ -110,7 +110,7 @@ BlazeComponent.extendComponent({
position: 'top',
});
},
'click .js-add-card.list-header-plus-square-icon'(event) {
'click .js-add-card.list-header-plus-bottom'(event) {
const listDom = $(event.target).parents(
`#js-list-${this.currentData()._id}`,
)[0];