the ALLOWED_SIZES array in function getThumbnailURLForFileLink (general.js) is missing the "extra_large" image size. This size is useful to use in place of the native big resolution-multi-mb pictures put in Podio by some users ;) It's good enough to save us the trouble of resizing the picture in node with the like of ImageMagick.
Suggested correction, general.js, line 12:
var ALLOWED_SIZES = ['badge', 'extra_large', 'large', 'medium', 'small', 'tiny'];
Hi,
the ALLOWED_SIZES array in function getThumbnailURLForFileLink (general.js) is missing the "extra_large" image size. This size is useful to use in place of the native big resolution-multi-mb pictures put in Podio by some users ;) It's good enough to save us the trouble of resizing the picture in node with the like of ImageMagick.
Suggested correction, general.js, line 12: var ALLOWED_SIZES = ['badge', 'extra_large', 'large', 'medium', 'small', 'tiny'];