Sebastian Tschan

Results 167 comments of Sebastian Tschan

Thanks for your report @cb-eli. jQuery File Upload uses the [blueimp-load-image](https://github.com/blueimp/JavaScript-Load-Image/) library for client-size image resizing. Your sample picture contains an [ICC profile](https://en.wikipedia.org/wiki/ICC_profile) - Kodak ProPhoto RGB - which is...

Thanks for your recommendation @bytestream. Unfortunately, [Array.isArray](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray) is only supported by IE9+ and more modern browsers, but I aim to keep the original [browser compatibility guarantees](https://github.com/blueimp/jQuery-File-Upload#browsers) of this project, which...

Well, that would introduce a breaking change that seems unnecessary to me. From my perspective, one of jQuery's greatest strengths has always been smoothing out browser differences (together with providing...

If we add the polyfill to the library, it would not be a breaking change. I don't think it's good practice to add polyfills in unrelated libraries. Even if we...

Thanks for the reminder about jQuery UI's end-of-life. Adding a local isArray function is definitely an option. It's used across four files though: https://github.com/blueimp/jQuery-File-Upload/blob/f978db4a3002f7f23d7aafc7394a2ee854857bcb/js/jquery.iframe-transport.js#L86 https://github.com/blueimp/jQuery-File-Upload/blob/f5d629abdaf480fefad8ad823cb1e2c96805bd4e/js/jquery.fileupload-ui.js#L86 https://github.com/blueimp/jQuery-File-Upload/blob/d2535157e6005eb3c37f7d0b0042462393139c5b/js/vendor/jquery.ui.widget.js#L90 https://github.com/blueimp/jQuery-File-Upload/blob/f5d629abdaf480fefad8ad823cb1e2c96805bd4e/js/jquery.fileupload.js#L359 https://github.com/blueimp/jQuery-File-Upload/blob/f5d629abdaf480fefad8ad823cb1e2c96805bd4e/js/jquery.fileupload.js#L650 So making...

Thanks for your investigation @redemption and your pull request (which I have just merged). To answer your last question as well, I don't have plans to add a JS based...

Sorry, I closed this in error thinking that it relates to #3666, which is however a slightly different problem. In any way, thanks for your report! I'm still considering if...

Thanks for the report. I currently don't have the resources to tackle this issue but I'm open for a user contributed fix.

I've revisited this issue and could finally track it down to a browser bug: IE9 (and possibly other IE versions) doesn't allow submitting a HTML form programmatically (neither via _form.submit()_...

This issue has never been closed. You probably misinterpreted the closed badges of the referenced issues. Anyway, this issue is unrelated to the plugin itself since it can be reproduced...