Hide the card composer link while a card is being dragged

This commit is contained in:
Maxime Quandalle 2015-05-23 22:23:27 +02:00
parent 9c2a3213eb
commit 40b605f7d8
5 changed files with 43 additions and 13 deletions

View file

@ -7,6 +7,12 @@ BlazeComponent.extendComponent({
this.componentChildren('addListForm')[0].open();
},
showNewCardForms: function(value) {
_.each(this.componentChildren('list'), function(listComponent) {
listComponent.showNewCardForm(value);
});
},
scrollLeft: function() {
// TODO
},