diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-09-23 09:02:53 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-09-23 12:19:33 +0200 |
commit | 3fac7b5bb7e490c9cd641f0ddd6de2d2c76915f6 (patch) | |
tree | 158d53f87abfbfc73dcf0b5314c387068afb6cba /vendor/blueimp/jquery-file-upload/README.md | |
parent | 9b90114d035ce4c10ee11cd2fbffe1f5ab95af17 (diff) | |
download | volse-hubzilla-3fac7b5bb7e490c9cd641f0ddd6de2d2c76915f6.tar.gz volse-hubzilla-3fac7b5bb7e490c9cd641f0ddd6de2d2c76915f6.tar.bz2 volse-hubzilla-3fac7b5bb7e490c9cd641f0ddd6de2d2c76915f6.zip |
composer update blueimp/jquery-file-upload
(cherry picked from commit 53b8ee7866eb1394980b08b90153a63563832391)
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/README.md')
-rw-r--r-- | vendor/blueimp/jquery-file-upload/README.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/vendor/blueimp/jquery-file-upload/README.md b/vendor/blueimp/jquery-file-upload/README.md index d9e16ed18..ef839d6c7 100644 --- a/vendor/blueimp/jquery-file-upload/README.md +++ b/vendor/blueimp/jquery-file-upload/README.md @@ -96,12 +96,16 @@ The File Upload plugin is regularly tested with the latest browser versions and ### Mobile browsers The File Upload plugin has been tested with and supports the following mobile browsers: -* Apple Safari on iOS 6.0+ -* Google Chrome on iOS 6.0+ +* Apple Safari on iOS 6.0+ (see Caveats below) +* Google Chrome on iOS 6.0+ (see Caveats below) * Google Chrome on Android 4.0+ * Default Browser on Android 2.3+ * Opera Mobile 12.0+ +### Caveats + +- iOS 9 has a [known bug](https://apple.stackexchange.com/questions/118154) where photos chosen from the Photo Library are all given the name `image.jpeg`, which is problematic when uploading multiple files at a time. Ideally your server should be responsible for deduplicating file uploads ([example](https://github.com/blueimp/jQuery-File-Upload/blob/master/server/php/UploadHandler.php#L490)). If you don't have control, as in the case of direct uploads to S3, you can pass an option `uniqueFilenames: {}` as part of the options object, which tells the uploader to deduplicate filenames. More details [here](https://github.com/blueimp/jQuery-File-Upload/commit/d419f43478aeafe95a794815f80a3016f58eb3b7). + ### Supported features For a detailed overview of the features supported by each browser version, please have a look at the [Extended browser support information](https://github.com/blueimp/jQuery-File-Upload/wiki/Browser-support). |