Update packages and update Meteor to 1.2.1

Blaze-components had yet another methods rename.
This commit is contained in:
Maxime Quandalle 2015-10-29 15:31:33 +01:00
parent dd10154392
commit 68521fc1c3
4 changed files with 31 additions and 35 deletions

View file

@ -34,7 +34,7 @@ BlazeComponent.extendComponent({
},
openNewListForm() {
this.childrenComponents('addListForm')[0].open();
this.childComponents('addListForm')[0].open();
},
// XXX Flow components allow us to avoid creating these two setter methods by
@ -179,7 +179,7 @@ BlazeComponent.extendComponent({
// Proxy
open() {
this.childrenComponents('inlinedForm')[0].open();
this.childComponents('inlinedForm')[0].open();
},
events() {