recognize eps, psd and illustrator as image

This commit is contained in:
Robin Appelman 2015-09-11 16:18:27 +02:00
parent 98966329bf
commit 72cfeaf157
1 changed files with 7 additions and 1 deletions

View File

@ -57,7 +57,13 @@
* @return {boolean} true if this is an image, false otherwise
*/
isImage: function() {
return this.has('mimetype') ? this.get('mimetype').substr(0, 6) === 'image/' : false;
if (!this.has('mimetype')) {
return false;
}
return this.get('mimetype').substr(0, 6) === 'image/'
|| this.get('mimetype') === 'application/postscript'
|| this.get('mimetype') === 'application/illustrator'
|| this.get('mimetype') === 'application/x-photoshop';
},
/**