From 3ed0eb303a502729386a4d820935a02431ad03ba Mon Sep 17 00:00:00 2001 From: Matias Meno Date: Fri, 10 May 2013 14:33:53 +0200 Subject: [PATCH] Increased the maxThumbnailFilesize to 10 since 2 was ridiculously small and confused lots of people (#43 #123) --- src/dropzone.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dropzone.coffee b/src/dropzone.coffee index 05ed87f83..07a26a708 100644 --- a/src/dropzone.coffee +++ b/src/dropzone.coffee @@ -69,7 +69,7 @@ class Dropzone extends Em maxFilesize: 256 # in MB paramName: "file" # The name of the file param that gets transferred. createImageThumbnails: true - maxThumbnailFilesize: 2 # in MB. When the filename exceeds this limit, the thumbnail will not be generated. + maxThumbnailFilesize: 10 # in MB. When the filename exceeds this limit, the thumbnail will not be generated. thumbnailWidth: 100 thumbnailHeight: 100