meteor-uploads
meteor-uploads copied to clipboard
Custom template formData helpers
Hello, thank you for this Package.
It seems to miss on the custom template example a little code for the "formData" in helpers.
You should add it :) .
'submitData': function() {
if (this.formData) {
this.formData['contentType'] = this.contentType;
} else {
this.formData = {contentType: this.contentType};
}
return typeof this.formData == 'string' ? this.formData : JSON.stringify(this.formData);
}
}
Where do you mean? In the documentation? Thanks.
Yes in documentation :+1: