From c71c4d45d7f4e99270f637f8012ed932d251e12e Mon Sep 17 00:00:00 2001 From: danialfarid Date: Fri, 13 Dec 2013 17:20:47 -0500 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6cd8e449..da02b6a2 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ var MyCtrl = [ '$scope', '$upload', function($scope, $upload) { }]; ``` -Note: `angular.file-upload-shim.js` must be loaded before `angular.js` and is only needed if you are supporting non-HTML5 FormData browsers or you need the support for upload progress or cancel. +**Note**: `angular.file-upload-shim.js` must be loaded before `angular.js` and is only needed if you are supporting non-HTML5 FormData browsers or you need the support for upload progress or cancel. Multiple files: Only for HTML5 browsers (not IE8-9) if you pass an array of files to `file` option it will upload all of them together. The formData file name will have the index appended to it (i.e. `file1`). @@ -78,6 +78,7 @@ Multiple files: Only for HTML5 browsers (not IE8-9) if you pass an array of file For browsers not supporting HTML5 FormData (IE8, IE9, ...) [FileAPI](https://github.com/mailru/FileAPI) module is used. For these browsers these two files are needed: **`FileAPI.min.js`, `FileAPI.flash.swf`** which will be loaded if the browser does not supports HTML5 FormData (no extra load for HTML5 browsers). + **Note**: Flash needs to be installed on the client browser since `FileAPI` uses Flash to upload files. You can put these two files beside `angular-file-upload-shim(.min).js` on your server to be loaded automatically on demand or use the following script to set the FileAPI load path (optional):