summaryrefslogtreecommitdiffstats
path: root/client/components/boards/body.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/boards/body.js')
-rw-r--r--client/components/boards/body.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/components/boards/body.js b/client/components/boards/body.js
index 78566f2e..ffb132c5 100644
--- a/client/components/boards/body.js
+++ b/client/components/boards/body.js
@@ -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
},