This commit is contained in:
Andrés Manelli 2018-04-15 23:20:48 -03:00
parent 4dbe6feb8c
commit b735817901

View file

@ -34,8 +34,8 @@ BlazeComponent.extendComponent({
events() { events() {
return [{ return [{
'click .js-open-list-menu': Popup.open('listAction'), 'click .js-open-list-menu': Popup.open('listAction'),
'click .js-add-card' () { 'click .js-add-card' (evt) {
const listDom = document.getElementById(`js-list-${this.currentData()._id}`); const listDom = $(evt.target).parents(`#js-list-${this.currentData()._id}`)[0];
const listComponent = BlazeComponent.getComponentForElement(listDom); const listComponent = BlazeComponent.getComponentForElement(listDom);
listComponent.openForm({ listComponent.openForm({
position: 'top', position: 'top',